나는 IBAction을 가지고 있으며 .xib의 버튼과 연결되어 있습니다. 그러나 행동을 위해이 규범이 필요했다.버튼과 연결되어 있지만 무효가 필요합니다.
- (void) reportScore: (int64_t) score forCategory: (NSString*) category
{
GKScore *scoreReporter = [[GKScore alloc] initWithCategory:category];
scoreReporter.value = counter;
[scoreReporter reportScoreWithCompletionHandler: ^(NSError *error)
{
[self callDelegateOnMainThread: @selector(scoreReported:) withArg: NULL error: error];
NSLog(@"Nice: %d", counter);
}];
}
내 버튼을 무효화 할 수있는 방법이 있습니까? 아니면 그런 식으로?
- (IBAction) subScore {
//data
}
공백과 IBAction은 같은 것입니다. IBAction은 헤더 파일에서 IB에게 작업에 메서드에 연결할 수 있다고 알리는 표시입니다. –