gpt4 book ai didi

ios - 当我点击按钮而不是 UIAlertcontroller 时创建 Action

转载 作者:可可西里 更新时间:2023-11-01 17:14:55 24 4
gpt4 key购买 nike

我为 UIAlertcontroller 创建两个按钮:

One Button - "OpenCamera"
Two button - "OpenGallery"

我只是不明白当我点击其中一个时我是如何创建 Action 的。

- (IBAction)takePic:(id)sender {


UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil
message:nil
preferredStyle:UIAlertControllerStyleActionSheet]; // 1
UIAlertAction *openCamrea = [UIAlertAction actionWithTitle:@"open camrea"
style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
}];
UIAlertAction *openGallery = [UIAlertAction actionWithTitle:@"open gallery"
style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
}];

[alert addAction:openCamrea];
[alert addAction:openGallery];

[self presentViewController:alert animated:YES completion:nil];
}

最佳答案

处理程序是要在选择项目时执行的 block 。

UIAlertAction *openGallery = [UIAlertAction
actionWithTitle:@"open gallery"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
// Code to run when the open gallery option is pressed.
}];

顺便说一句,我认为问题中的长线确实没有帮助,因为它们有效地隐藏了关键参数。

关于ios - 当我点击按钮而不是 UIAlertcontroller 时创建 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33693789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com