我正在使用 UIAlertController 。
现在我可以列出以下代码中的项目:
{
UIAlertController *controller = [UIAlertController alertControllerWithTitle: @"Beds"
message: @""
preferredStyle: UIAlertControllerStyleAlert];
[controller.view setBackgroundColor:[UIColor clearColor]];
[controller.view setTintColor:[UIColor blackColor]];
for (int a=0;a<[bedsCount count];a++)
{
UIAlertAction *button = [UIAlertAction actionWithTitle: [bedsCount objectAtIndex:a]
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action)
{
[bedSelectionText setTitle:[bedsCount objectAtIndex:a] forState:UIControlStateNormal];
}];
[controller addAction: button];
}
我想在 UIAlertController 按钮上点击列表,其格式如下所示:
答案 0 :(得分:1)
您在图片中显示的内容很复杂,无法使用简单的UIAlertController实现。
为了复制截图,您需要的是
谷歌所有这些项目的教程。正如我所说,这不是一项简单的任务,因为Xcode中没有开箱即用的复选标记功能。