- Do
pod install
in project
Using MVVMC (Model view viewmodel Controller), wich mean there's viewController that have separate view file to handle view manipulation and view mocking
##Function and explanation ####Appdelegate initialization first window
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor whiteColor];
self.uniqueVC = [[UniqueCodeViewController alloc] initWithNibName:@"UniqueCodeViewController" bundle:nil];
self.baseNavigationVC = [[BaseNavigationController alloc] initWithRootViewController:self.uniqueVC];
self.window.rootViewController = self.baseNavigationVC;