我使用按钮在栏中显示字母,这是我使用的代码

-(IBAction) clicked: (id)sender{
NSString *titleOfButton = [sender titleForState:UIControlStateNormal];
NSString *newLabelText = titleOfButton;
labelsText.text = [NSString stringWithFormat:@"%@%@", labelsText.text, newLabelText];

 //if ([newLabelText length] >= 5) newLabelText = [newLabelText substringToIndex:5];
 }

我遇到的问题是我希望它最多可以输入5个字母。有人可以告诉我该怎么做吗?

谢谢

最佳答案

添加此行-

if ([newLabelText length] >= 5) newLabelText = [newLabelText substringToIndex:5];

...或将其应用于要截断的任何字符串。

查看Apple Docs,了解一些非常有用的NSString内容

07-24 15:36