как я могу настроить 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