美文网首页
ios · 自定义UIAlertView

ios · 自定义UIAlertView

作者: 爱迪生的小跟班 | 来源:发表于2018-09-15 22:06 被阅读0次

-松小宝-

HCAlertView

自定义UIAlertView   HCAlertView gitHub下载

使用方法: #import "HCAlertView.h"

-(void)showAction:(id)sender{ [HCAlertView showAlertViewTitle:@"版本升级" message:@"有新版本升级,给我们一个评价吧,感谢您的支持!" selectItems:^(id items) { 

    [items addSelectItemWithTitle:@"去评价" titleColor:[UIColor blueColor]];

     [items addSelectItemWithTitle:@"下次吧" titleColor:[UIColor blueColor]]; 

    [items addSelectItemWithTitle:@"残忍拒绝" titleColor:[UIColor blueColor]];

     [items addSelectItemWithTitle:@"取消" titleColor:[UIColor grayColor]];

} selectIndex:^(NSInteger selectIndex) {

    NSLog(@"选中:%ld",selectIndex);

}];

}

-(void)showAction2:(id)sender{ [HCAlertView showAlertViewTitle:@"版本升级" message:@"有新版本升级,给我们一个评价吧,感谢您的支持!" selectItems:^(id items) { 

    [items addSelectItemWithTitle:@"去评价" titleColor:[UIColor blueColor]];

     [items addSelectItemWithTitle:@"取消" titleColor:[UIColor grayColor]];

} selectIndex:^(NSInteger selectIndex) {

    NSLog(@"选中:%ld",selectIndex);

}];

}

-(void)showAction3:(id)sender{ [HCAlertView showAlertViewTitle:@"版本升级" message:@"有新版本升级,给我们一个评价吧,感谢您的支持!" selectItems:^(id items) { 

    [items addSelectItemWithTitle:@"取消" titleColor:[UIColor grayColor]];

} selectIndex:^(NSInteger selectIndex) {

    NSLog(@"选中:%ld",selectIndex);

}];

}

效果图:

只有一个选项效果 两个选项效果 >2个选项效果

相关文章

网友评论

      本文标题:ios · 自定义UIAlertView

      本文链接:https://www.haomeiwen.com/subject/itotnftx.html