0

我想在 UIAlertAction 的一个选项中添加复选框,即 uibutton 和 uilabel,并且在 UIAlertController 的另一个 UIAlertAction 中仅添加按钮。

请帮助和建议如何实现它。

 UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"My Alert"
            message:@"This is an action sheet." 
            preferredStyle:UIAlertControllerStyleActionSheet]; // 1
    UIAlertAction *firstAction = [UIAlertAction actionWithTitle:@"one"
            style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
                NSLog(@"You pressed button one");
            }]; // 2
    UIAlertAction *secondAction = [UIAlertAction actionWithTitle:@"two"
            style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
                NSLog(@"You pressed button two");
            }]; // 3

    [alert addAction:firstAction]; // 4
    [alert addAction:secondAction]; // 5
4

1 回答 1

0

试试这个技巧:

  • 了解如何将 ViewController 显示为弹出窗口
    • 将 UITable 添加到 ViewController
    • 在 UITable 中显示项目
    • 通过添加自定义单元格来自定义 UITable
    • 在每个自定义单元格中添加一个按钮
    • 该按钮将有两种图像,一种是空白框,另一种是带有复选标记的框
    • 当用户触摸表格单元格时,您需要更改与该表格行对应的按钮图像,以便用户认为他们正在选中或取消选中该框
    • 最后在底部添加一个完成按钮以关闭视图控制器

谷歌所有这些项目的教程。正如我所说,这不是一项简单的任务,因为 Xcode 中没有开箱即用的复选标记功能。

来自:https ://stackoverflow.com/a/31941282/3901620

于 2016-11-11T07:12:56.367 回答