2011-05-08 31 views
0

我該如何定製UILocalNotification,以便它可以使用兩個整數變量。我嘗試將UILocalNotificaion繼承到類,但當我訪問我添加的兩個整數之一時,它崩潰。我如何定製UILocalNotification? XCode iPhone

@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 

回答

1

使用UILocalNotification的內置userInfo屬性。

例如,您可以在其中存儲鍵值對的NSDictionary。使用NSNumber對象來表示您的整數。

相關問題