欢迎光临
我们一直在努力

这个一个与系统UIAlertController相似的中间弹出的alertView,写…

建站超值云服务器,限时71元/月

这个一个与系统UIAlertController相似的中间弹出的alertView,写...

项目介绍:

这个一个与系统UIAlertController相似的中间弹出的alertView,写这个是为了方便修改字体颜色、字体大小、间距等,现在的美工很膨胀,什么款都能搞出来!~~~

先看效果

描述

描述

alert6.png

alert5.png

alert4.png

alert3.png

alert2.png

alert1.png

使用方法 将轮子文件夹MLAlertView拖到自己项目导入#import "MLAlertView.h"即可

1.创建

  1. MLAlertView *alert = [[MLAlertView alloc] initWithTitle:@"提交成功" andMessage:@"上海港货物吞吐量和集装箱吞吐量均居世界第一" andMessageAlignment:NSTextAlignmentCenter andItem:@[@"知道了"] andSelectBlock:^(NSInteger index) {    NSLog(@"index->%ld",index);}];

复制代码
2.设置需要的属性

  1. //横线和竖线的颜色alert.lineViewColor = [UIColor colorWithRed:220/255.0 green:220/255.0 blue:220/255.0 alpha:1];//副标题或描述的字体颜色alert.messageLabelColor = [UIColor redColor];//按钮item的颜色数组 按顺序取 实际最多只有3个按钮 如果颜色数组只有两个颜色,则最后一个颜色按钮是默认色,如果颜色数组颜色多了,只取前3个值NSArray *colorArr = @[[UIColor greenColor]];alert.itemTitleColorArr = colorArr;//副标题或描述的颜色alert.messageLabelColor = [UIColor grayColor];alert.buttonFont = [UIFont systemFontOfSize:18 weight:550];alert.transverseLineHidden = YES;//设置副标题某段文字的颜色 如果设置了副标题颜色messageLabelColor,必须放在前面,否则此处设置无效,会被messageLabelColor覆盖,没有设置副标题则此处设置无效[alert messageLabelTextColorWith:NSMakeRange(15, 6) andColor:[UIColor orangeColor]];
  2. 3.调用下面之一的show方法就可以弹出来了
  3. if (self.tabBarController.view) {    [alert showWithView:self.tabBarController.view];    }else if (self.navigationController.view) {    [alert showWithView:self.navigationController.view];}else{    [alert showWithView:self.view];}

复制代码
GitHub地址:https://github.com/longmaboy/AlertView喜欢的小伙伴可以关注一下!

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 这个一个与系统UIAlertController相似的中间弹出的alertView,写…
分享到: 更多 (0)