AppDelegate.m
895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// AppDelegate.m
// XianYu
//
// Created by li bo on 16/5/28.
// Copyright © 2016年 li bo. All rights reserved.
//
#import "AppDelegate.h"
#import "GLD_Mediator+Root.h"
#import "LBTabBarController.h"
#define LBKeyWindow [UIApplication sharedApplication].keyWindow
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
// LBTabBarController *tabBarVc = [[LBTabBarController alloc] init];
//
//
// CATransition *anim = [[CATransition alloc] init];
// anim.type = @"rippleEffect";
// anim.duration = 1.0;
//
//
// [self.window.layer addAnimation:anim forKey:nil];
self.window.rootViewController = [GLD_Router tabbarViewControllor];
return YES;
}
@end