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

自定义Lable提示框(渐变动画)

时间:2015-07-14 05:58:33      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 移除按钮不能使用,开始默认
    self.removeBtn.enabled = NO;
    self.alertView.textAlignment = UITextAlignmentCenter;
    self.alertView.alpha = 0.0; // 完全透明
    self.alertView.backgroundColor = [UIColor colorWithRed:1 green:1 blue:0 alpha:0.5];
}


/** 显示指示器 方法封装 */
- (void)showHud:(NSString *)text
{
    self.alertView.text = text;
    
    // 慢慢出现(出现动画持续1秒)
    [UIView animateWithDuration:1.0 animations:^{
        self.alertView.alpha = 1.0;
    } completion:^(BOOL finished) {
        
        // 1.5秒后,再慢慢消失(消失动画持续1秒)
        [UIView animateWithDuration:1.0 delay:1.5 options:kNilOptions animations:^{
            self.alertView.alpha = 0.0;
        } completion:nil];
        
    }];
}

 

自定义Lable提示框(渐变动画)

标签:

原文地址:http://www.cnblogs.com/cjpBlog/p/4644321.html

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