我正在处理 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];
....
NSString* str = @"abcd abcd abcd abcd";
[str capitalizedString]; // = Abcd Abcd Abcd Abcd
[str uppercaseString]; // = ABCD ABCD ABCD ABCD
大写字符串,NSString的方法?
您可以从文本字段属性下的情节提要中执行此操作。将大写下拉更改为所有字符。在您的设备上进行测试或确保键盘已打开。如果您从物理键盘键入,它将覆盖模拟器键盘上的大写箭头。