ボタンを取得しました。これをクリックすると、userInteractionが設定されます。self.view.userInteractionEnabled = NO;
これは機能します。ボタンをクリックすると、ボタンをクリックできなくなります。それから私はreceiveNotification
別のクラスで呼び出すものを手に入れました。
- (void) receiveNotification:(NSNotification *) notification
{
if ([[notification name] isEqualToString:@"EnableUI"]){
self.view.userInteractionEnabled = YES;
NSLog(@"Successfully received the %@ notification!",[notification name]);
}
}
プログラムの出力は、通知が印刷されるため、通知を受信したことを示してSuccessfully received the EnableUI notification!
いますが、それでもUIボタンをクリックできません...