如何自定义 UILocalNotification? iPhone XCode
我如何自定义 UILocalNotification 以便它可以采用两个整数变量。我尝试将 UILocalNotificaion 继承到一个类,但当我访问我添加的两个整数之一时,它崩溃了。
@interface AHNotification : UILocalNotification {
@public
int AllIndex;
int Index;
}
@property int AllIndex;
@property int Index;
@end
@implementation AHNotification
@synthesize AllIndex,Index;
-(AHNotification*) init{
[super init];
return self;
}
@end
how can i customize UILocalNotification
so it can take two integers variables. I tried to inherit the UILocalNotificaion
to a class but it crashes when i access one of the two integers that i have added.
@interface AHNotification : UILocalNotification {
@public
int AllIndex;
int Index;
}
@property int AllIndex;
@property int Index;
@end
@implementation AHNotification
@synthesize AllIndex,Index;
-(AHNotification*) init{
[super init];
return self;
}
@end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 UILocalNotification 的内置 userInfo 属性。
例如,您可以在其中存储键值对的 NSDictionary。使用 NSNumber 对象来表示您的整数。
Use the built-in userInfo property of UILocalNotification.
For example, you can store an NSDictionary of key-value pairs in it. Use NSNumber objects to represent your ints.