iOS自定义启动页

自定义启动图有很多方法, 原理都差不多, 系统的LaunchImage是不能修改的, 所以可以用它当做底图, 然后再往这个图上加自己的需求

//在AppDelegate声明启动图 customLaunchImageView
//在didFinishLaunchingWithOptions 调用[self setUpLaunchScreen]
//注意:self.window的rootViewController已设置

//添加启动图
- (void)setUpLaunchScreen {
    
    self.customLaunchImageView = [[UIImageView alloc]initWithFrame:self.window.bounds];
    self.customLaunchImageView.userInteractionEnabled = YES;
    self.customLaunchImageView.image = [UIImage imageNamed:@"这个图片需和LaunchImage图片一模一样, 要判断尺寸"];
    
    //自定义控件我就略了
    [self.customLaunchImageView addSubview: yourLabel];
    
    [self.customLaunchImageView addSubview: yourImageView];
    
    [yourImageView setImageWithURL:[NSURL URLWithString:@"图片地址填写服务器返回的地址"]
                  placeholderImage:[UIImage imageNamed:@"占位图可以不写"]];
    
    
    
    [yourButton addTarget:self action:@selector(yourButtonClick) forControlEvents:UIControlEventTouchDown];
    [self.customLaunchImageView addSubview:yourButton];
    
    [self.window addSubview:self.customLaunchImageView];
    [self.window bringSubviewToFront:self.customLaunchImageView];
    
    //5秒后自动关闭
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5*NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [self yourButtonClick];
    });
}

- (void)yourButtonClick {
    
    //是否显示新版本引导页加在这里
    
    //移动自定义启动图
    if (self.customLaunchImageView) {
        [UIView animateWithDuration:0.3 animations:^{
            self.customLaunchImageView.alpha = 0;
        } completion:^(BOOL finished) {
            [self.customLaunchImageView removeFromSuperview];
            self.customLaunchImageView = nil;
        }];
    }
}



  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值