如何自定义 UILocalNotification? iPhone XCode

发布于 2024-11-06 00:13:59 字数 404 浏览 2 评论 0原文

我如何自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绿萝 2024-11-13 00:13:59

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文