在方法中添加字符串 (NSString) 时遇到问题吗?
当我在方法中使用字符串连接(如 -(IBAction)buttonDigitPressed:(id)sender)时,它显示空白。我记得该方法会自动终止应用程序。有什么问题请重播我。
NSString *str= @"";
-(IBAction)buttonDigitPressed:(id)sender{
int a = (int)[sender tag];
str= [str stringByAppendingFormat:@"%i",a];
label1.text= str;
}
这是代码。检查代码,将我犯错误的地方的重播发送给我。
when i am using string concatenation in method(like -(IBAction)buttonDigitPressed:(id)sender) it shows the blank.I am recall the method automatically terminate the app. what is the problem plz replay me.
NSString *str= @"";
-(IBAction)buttonDigitPressed:(id)sender{
int a = (int)[sender tag];
str= [str stringByAppendingFormat:@"%i",a];
label1.text= str;
}
this is the code. check the code send me the replay where i am doing the mistake.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
方法中的
str
是一个自动释放的对象。使其成为copy
属性并执行如果
str
与label1.text
相同,则直接执行此操作。str
in the method is an autoreleased object. Make it acopy
property and doIf
str
is same aslabel1.text
then do this directly.