我正在尝试将NSString
表格单元格标签中的所有字母大写。
这是我的代码:
// cell title and subtitle
cell.nameLabel.text = listingNode.title;
[cell.nameLabel.text uppercaseString];
它似乎根本没有任何效果。
我正在尝试将NSString
表格单元格标签中的所有字母大写。
这是我的代码:
// cell title and subtitle
cell.nameLabel.text = listingNode.title;
[cell.nameLabel.text uppercaseString];
它似乎根本没有任何效果。
该方法uppercaseString
返回接收者的大写表示。这意味着您需要收集返回的字符串并将其作为文本应用于标签。
尝试这个,
NSString *uppercase = [cell.nameLabel.text uppercaseString];
cell.nameLabel.text = uppercase;
NSString * str=@"jit";
NSLog(@"%@",[str uppercaseString]);
cell.nameLabel.text=[str uppercaseString];
您只需将字符串转换为大写
cell.nameLabel.text=[String_name uppercaseString];
你怎么看。
cell.nameLabel.text = [listingNode.title uppercaseString];
大写字符串返回一个值 - 包含操作结果的 NSString。
cell.nameLabel.text = [listingNode.title uppercaseString];