Initial commit

This commit is contained in:
shiftcmdk
2019-07-28 18:48:02 +02:00
commit 7956264aa1
39 changed files with 2985 additions and 0 deletions

View 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