UILocalNotificationクラスを拡張するReminderクラスを作成しています。
そのインターフェースには、次のメソッドがあります。
- (void)setType:(NSString*)type;
本当にばかげたことを見落としているかもしれませんが、電話すると:
[reminder setType:type];
リマインダーは_
@property (nonatomic, strong) Reminder *reminder;
ビューコントローラーで、悪名高いエラーが発生します:
[UIConcreteLocalNotification setType:]: unrecognized selector sent to instance
インターフェイスで宣言されているにもかかわらず、 setType:メソッドは Reminder クラスではなく UIConcreteLocalNotification で直接呼び出されているようです。