在方法中添加字符串 (NSString) 时遇到问题吗?

发布于 2024-11-18 16:23:29 字数 347 浏览 2 评论 0原文

当我在方法中使用字符串连接(如 -(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃颗糖壮壮胆 2024-11-25 16:23:29

方法中的str是一个自动释放的对象。使其成为 copy 属性并执行

self.str = [self.str stringByAppendingFormat:@"%i",a];
label1.text = self.str;

如果 strlabel1.text 相同,则直接执行此操作。

label1.text = [label1.text stringByAppendingFormat:@"%i",a];

str in the method is an autoreleased object. Make it a copy property and do

self.str = [self.str stringByAppendingFormat:@"%i",a];
label1.text = self.str;

If str is same as label1.text then do this directly.

label1.text = [label1.text stringByAppendingFormat:@"%i",a];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文