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