Initial commit
This commit is contained in:
24
autoalertspreferences/AAApp.m
Normal file
24
autoalertspreferences/AAApp.m
Normal file
@@ -0,0 +1,24 @@
|
||||
#import "AAApp.h"
|
||||
|
||||
@implementation AAApp
|
||||
|
||||
-(id)initWithBundleID:(NSString *)bundleID name:(NSString *)name infos:(NSMutableArray<AAAlertInfo *> *)infos {
|
||||
if (self = [super init]) {
|
||||
self.bundleID = bundleID;
|
||||
self.name = name;
|
||||
self.infos = infos;
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
-(void)dealloc {
|
||||
self.bundleID = nil;
|
||||
self.name = nil;
|
||||
|
||||
self.infos = nil;
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user