我正在寻找一个系统,如果用户在多项选择题中得到正确答案,它会更新用户的分数。我有一个 IBAction 在用户选择正确的选项时运行,我希望它更新分数。即当答案正确时得分+ 2 是CGFloat 还是NSInteger 的问题?
问问题
130 次
1 回答
2
尝试这样的事情:
//.h File
@property (nonatomic) NSUInteger score; //If the user can get a negative score, change "NSUInteger" to "NSInteger"
-(void)scoreChanged;
//.m File
-(void)scoreChanged{
self.score += 2; //You can change the 2 to any number
}
//viewDidLoad
self.score = 0;
无论您想在哪里更新分数,只需调用该scoreChanged
方法即可。希望这可以帮助!
于 2012-06-27T22:12:42.763 回答