一、效果展示
GitHub更多效果展示图片
二、安装
注:为了支持CocoaPods安装,但是MSAlertController
已被人抢占,不得已只能将CocoaPods库中的名字改为MSAlertVC
,因此在安装完MSAlertVC
后,引入头文件应该为MSAlertController.h
,而非MSAlertVC.h
1.CocoaPods
- 在 Podfile 中添加
pod 'MSAlertVC'
; - 执行
pod install
或pod update
; - 导入头文件:
#import <MSAlertController.h>
。
2.手动安装
- 下载
MSAlertVC
项目; - 将
MSAlertController
文件夹直接拖入项目中; - 导入头文件:
#import "MSAlertController.h"
。
三、使用方法
1.初始化MSAlertController
+ (_Nonnull instancetype)alertControllerWithArray:(nonnull NSArray <NSString *> *)confirmArray;
2.自定义属性
title
rowHeight
3.自定义方法
// 设置第index行的按钮的颜色(可选实现的方法)
- (void)setColor:(nonnull UIColor *)color withIndex:(NSInteger)index;
// 设置第index行的按钮的字体(可选实现的方法)
- (void)setFont:(nonnull UIFont *)font withIndex:(NSInteger)index;
// 设置取消按钮的文字内容和颜色字体(可选实现的方法)
- (void)setCancleButtonTitle:(nonnull NSString *)title font:(nonnull UIFont *)font color:(nonnull UIColor *)color;
4.点击事件
- (void)addConfirmButtonAction:(nullable MSButtonBlock)block;
四、使用示例
示例1
NSArray *arr = @[@"保存图片", @"转发微博", @"赞"];
MSAlertController *alertVC = [MSAlertController alertControllerWithArray:arr];
[alertVC addConfirmButtonAction:^(NSInteger index, BOOL cancle) {
if (cancle) {
NSLog(@"你点击了取消按钮");
return;
}
NSLog(@"你点击的是:%@", arr[index]);
}];
[self presentViewController:alertVC animated:NO completion:nil];
示例2
MSAlertController *unfollowAlertVC = [MSAlertController alertControllerWithArray:@[@"不再关注"]];
unfollowAlertVC.title = @"你确定不再关注MS了吗?";
[unfollowAlertVC setColor:[UIColor redColor] withIndex:0];
[unfollowAlertVC addConfirmButtonAction:^(NSInteger index, BOOL cancle) {
if (cancle) {
NSLog(@"你点击了取消按钮");
return;
}
NSLog(@"果取关");
}];
[self presentViewController:unfollowAlertVC animated:NO completion:nil];
网友评论