// 1.创建一个UIAlertController,注意用类方法创建的形式创建,选择AlertControllerStyle为ActionSheet
UIAlertController * sheet = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:(UIAlertControllerStyleActionSheet)];
// 2.给 ActionSheet 添加动作,可以在回调的block中写相关代码
[sheet addAction:[UIAlertAction actionWithTitle:@"收藏" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) {
}]];
[sheet addAction:[UIAlertAction actionWithTitle:@"举报" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) {
}]];
// 注意:如果选择UIAlertActionStyleCancel这个款式,则该action是取消按钮,独立于其它的action。而其他的action都是黏在一起的。
[sheet addAction:[UIAlertAction actionWithTitle:@"取消" style:(UIAlertActionStyleCancel) handler:^(UIAlertAction * _Nonnull action) {
}]];
[ZHJCurrentVc presentViewController:sheet animated:YES completion:nil];
UIAlertController关于ActionSheet的用法
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 基础用法先说明一下,自己创建一个叫BluetoothManager的单例,在头文件BluetoothManager...
- 每天早上起床一杯清水,这杯水是生命之源,贯通你全身的排泄和苏醒你全身的每个细胞。浊气自然去之。对于调节肠道和肠蠕动...