码迷,mamicode.com
首页 > 其他好文 > 详细

从storyBoard的里面加载控制器的方法

时间:2015-04-21 20:18:38      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

这个方法不常用,容易被忽略,但是用起来还是蛮方便的

@implementation HMAdViewController

- (void)viewDidLoad

{

    [super viewDidLoad];

    

    // 1.背景图片

    UIImageView *bg = [[UIImageView alloc] init];

    bg.image = [UIImage imageNamed:@"Default"];

    bg.frame = self.view.bounds;

    [self.view addSubview:bg];

    

    // 2.广告图片(真实的广告图片应该要先下载广告图片)

    UIImageView *ad = [[UIImageView alloc] init];

    ad.image = [UIImage imageNamed:@"ad"];

    ad.width = 280;

    ad.height = 300;

    ad.centerX = self.view.width * 0.5;

    ad.y = 60;

    [self.view addSubview:ad];

    

    // 3.2s后调到下一个主界面

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

        UIWindow *window = [UIApplication sharedApplication].keyWindow;

        UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

        window.rootViewController = [storyboard instantiateViewControllerWithIdentifier:@"Main"];

    });

}

 

@end

 

从storyBoard的里面加载控制器的方法

标签:

原文地址:http://www.cnblogs.com/BinZone/p/4444940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!