扩展UILocalNotification
我是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:]:无法识别的select发送到实例0x8144780。 为什么?
FSCustomNatification* localNotification = [[FSCustomNatification alloc] init]; localNotification.typeNotificationT = FSCustomNatificationWrite;
通过错误消息的外观, UILocalNotification
是类集群的一部分。 文档没有说(我可以很快看到),但你不应该UILocalNotification
。
相反,您应该使用UILocalNotification
提供的userInfo
来添加任何额外的信息,当通知触发时您想要可用。
- (iOS,XCode 4.2)使用Git post-commit hook设置包版本会导致我的项目变成Mac项目
- 如何使用NSCoding在我的应用程序中保存/加载数据?
- CocaPods导入AFNetworking但不导入OHAttributedLabel
- 'unsigned long'UIUserNotificationSettings *'的隐式转换不允许使用arc
- 寻找一个url是否有效并存在?
- 提交未发布的iOS应用的动作?
- iOS服务器端validation – 收据types
- 想要在iOS中的电子邮件正文发送图像和文字的电子邮件
- 如何从Swift中的Cloud FireStore Firebase访问特定字段