應用中有RSS,需要把標題中的字母轉換為大寫字母,能提供簡單的方法麼?謝謝
這樣就行了
在cellForRow AtIndexPath
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSString *string1 = @"The quicK brOwn fox jumpeD";
cell.textLabel.text = [string1 uppercaseString];
....