gpt4 book ai didi

ios - Xcode 5 错误永远不会消失

转载 作者:行者123 更新时间:2023-11-29 03:16:22 25 4
gpt4 key购买 nike

- (IBAction)buttonPressed {
count++;

scoreLabel.text = [NSString stringWithFormat:@"Score\n%i", count];
}

继初学者 ios 教程之后。他使用 xcode 并且没有收到此错误。我在 (IBAction)buttonPressed 之后收到错误,说我需要输入一个 ;但它没有;当我放一个;它什么都不做!请帮忙!!

最佳答案

错误是因为该方法是在接口(interface)中声明的,而不是在实现中声明的。

这是你想要的:

在.h文件中

@interface YourClassNameHere : SuperClassNameHere {
int count;
}
@property (weak, nonatomic) IBOutlet UILabel *scoreLabel;
@end

在.m文件中

@implementation YourClassNameHere
- (IBAction)buttonPressed {
count++;
self.scoreLabel.text = [NSString stringWithFormat:@"Score\n%i", count];
}
@end

IBOutlet 属性scoreLabel 需要连接到UILabel

关于ios - Xcode 5 错误永远不会消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21655986/

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