iOS-系统弹窗调用,

代码:

复制代码
UIAlertController *alertViewController = [UIAlertController alertControllerWithTitle:@"请选择方式" message:nil preferredStyle:UIAlertControllerStyleActionSheet];// style 为 sheet
UIAlertAction *cancle = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
UIAlertAction *picture = [UIAlertAction actionWithTitle:@"相册" style:UIAlertActionStyleDefault handler:nil];//handler里可以写需要的函数
UIAlertAction *photo = [UIAlertAction actionWithTitle:@"相机" style:UIAlertActionStyleDefault handler:nil];//同理
[alertViewController addAction:cancle];
[alertViewController addAction:photo];
[alertViewController addAction:picture];
[self presentViewController:alertViewController animated:YES completion:nil];

handle处理格式如下:

复制代码
UIAlertAction *picture = [UIAlertAction actionWithTitle:@"相册" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    <#code#>
}];//handler里可以写需要的函数

效果图如下:

相关推荐
aoxiang_ywj11 分钟前
【Linux】内核驱动学习笔记(二)
linux·笔记·学习
WhyNot?1 小时前
深度学习入门(三):神经网络的学习
深度学习·神经网络·学习
Moonnnn.1 小时前
运算放大器(五)电压比较器
笔记·学习·硬件工程
KangkangLoveNLP2 小时前
手动实现一个迷你Llama:使用SentencePiece实现自己的tokenizer
人工智能·深度学习·学习·算法·transformer·llama
浪淘沙jkp3 小时前
大模型学习二:DeepSeek R1+蒸馏模型组本地部署与调用
学习·deepseek
Tee xm3 小时前
清晰易懂的 Flutter 卸载和清理教程
linux·windows·flutter·macos
m0_613607013 小时前
数据集(Dataset)和数据加载器(DataLoader)-pytroch学习3
学习
大千UI工场3 小时前
UI设计中的交互技巧:如何让按钮更有反馈感?
ui·交互
序属秋秋秋3 小时前
算法基础_基础算法【位运算 + 离散化 + 区间合并】
c语言·c++·学习·算法·蓝桥杯
虾球xz5 小时前
游戏引擎学习第198天
学习·游戏引擎