gpt4 book ai didi

objective-c - 将 UILabel 中显示的整数加一

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:34:05 25 4
gpt4 key购买 nike

我有一个 UILabel,当用户按下一个按钮时,我希望标签将其值加一。但是我在这方面遇到了一些麻烦。这是我的代码:

- (IBAction)addButton2:(id)sender {
int integer = 1;
integer++;
[label1 setText:[NSString stringWithFormat:@"%i",integer]];
}

最佳答案

int 不响应 stringValue ...

原来的问题有 [int stringValue] 是行不通的

-(IBAction)addButton2:(id)sender {
static int myInt = 1;
myInt++;
NSString *string = [NSString stringWithFormat:@"%d", myInt];
[label setText:string];
}

关于objective-c - 将 UILabel 中显示的整数加一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6878954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com