iOS初心者です。UILocalNotification を拡張してみます。以下の私のクラス。
@interface FSCustomNatification : UILocalNotification
typedef enum {
FSCustomNatificationPay,
FSCustomNatificationWrite,
FSCustomNatificationSend
} NotificationTypeT;
@property (nonatomic, assign) NotificationTypeT typeNotificationT;
@end
#import "FSCustomNatification.h"
@implementation FSCustomNatification
@end
typeNotificationT プロパティを設定すると、-[UIConcreteLocalNotification setTypeNotificationT:]: unrecognized selector sent to instance 0x8144780 が表示されます。なんで?
FSCustomNatification* localNotification = [[FSCustomNatification alloc] init];
localNotification.typeNotificationT = FSCustomNatificationWrite;