您的位置:首页 > 移动开发 > IOS开发

iOS 仿安卓弹框 alertview

2016-06-22 15:13 375 查看
//弹框

-(void)animationWithStr:(NSString *)alertTitle{

    

    self.alertLable = [[UILabel
alloc]initWithFrame:CGRectMake(kWidth/2 -
60, kHeight -
100, 120,
30)];

    self.alertLable.backgroundColor
= [UIColor
colorWithHexString:@"#8d8a8a"
alpha:1];

    self.alertLable.textColor = [UIColor
whiteColor];

    self.alertLable.textAlignment
= NSTextAlignmentCenter;

    self.alertLable.hidden =
NO;

    self.alertLable.text = alertTitle;

    self.alertLable.font
= [UIFont
systemFontOfSize:14];

    self.alertLable.layer.masksToBounds
= YES;

    self.alertLable.layer.cornerRadius
= 5;

    

    [self.view
addSubview:self.alertLable];

    

    [UIView
animateWithDuration:0.f
animations:^{

        

        self.alertLable.alpha =1;

        

    } completion:^(BOOL finished) {

        

        

        [UIView
animateWithDuration:3.f
animations:^{

            

            self.alertLable.alpha =
0;

            

        } completion:^(BOOL finished) {

            [self.alertLable
removeFromSuperview];

        }];

        

        

    }];

    

    

    

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: