カスタム変数を渡すように NSUserNotifictation を変更しようとしています:
@interface MyUserNotification: NSUserNotification
@property (nonatomic) int theid;
@property (nonatomic) NSString* url;
@end
@implementation MyUserNotification
@end
次に、私のAppDelegate
オブジェクトで開始するとき:
MyUserNotification *notification = [[MyUserNotification alloc] init];
notification.theid = theid;
設定theid
するとエラーがスローされます:
-[_NSConcreteUserNotification setTheid:]: unrecognized selector sent to instance 0x100204840
NSConcreteUserNotification
オブジェクトが関与するのはなぜですか?