1

我正在处理 RSS 提要,需要将标题和副标题变成大写字母,有没有简单的方法可以做到这一点?

在此处输入图像描述

谢谢。

4

4 回答 4

3

在 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];

....
于 2012-11-25T14:36:37.403 回答
1
NSString* str = @"abcd abcd abcd abcd";
[str capitalizedString];    //  = Abcd Abcd Abcd Abcd
[str uppercaseString];      //  = ABCD ABCD ABCD ABCD
于 2012-11-25T14:37:50.340 回答
0

大写字符串,NSString的方法?

于 2012-11-25T14:33:56.743 回答
0

您可以从文本字段属性下的情节提要中执行此操作。将大写下拉更改为所有字符。在您的设备上进行测试或确保键盘已打开。如果您从物理键盘键入,它将覆盖模拟器键盘上的大写箭头。

于 2014-12-01T14:56:28.190 回答