ios8 uialertview 中的复选框
checkbox in uialertview in ios8
我想完全按照下图添加复选框
下面是我的代码:
UIButton *nameField = [[UIButton alloc] initWithFrame:CGRectMake(120, 0, 30, 30.0)];
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 250, 50)];
[v setBackgroundColor:[UIColor clearColor]];
[nameField setImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
[v addSubview:nameField];
UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Delete selected pods from server?" message:
@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[av setValue:v forKey:@"accessoryView"];
av.message = @"This will delete all the posts related to the pictures you want to delete!";
[av show];
使用上面的代码我得到的是:
我想要消息旁边的复选框..
对如何进行有任何帮助或建议吗?
您可以使用 https://github.com/wimagguc/ios-custom-alertview
创建您的自定义内容视图并将其设置为
CustomIOS7AlertView *alertView = [[CustomIOS7AlertView alloc] init];
UIView *customView ..; //Your custom view
[alertView setContainerView:customView];
我建议你不要那样做。
accessoryView
不是 public 暴露的 API 并且您有应用被拒绝的风险
UIAlertView
在 iOS8 中已弃用,请使用 UIAlertController
你可以使用第三方库,我通常会在我的项目中集成MRProgress,你可以创建自己的nib并添加它。
我想完全按照下图添加复选框
下面是我的代码:
UIButton *nameField = [[UIButton alloc] initWithFrame:CGRectMake(120, 0, 30, 30.0)];
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 250, 50)];
[v setBackgroundColor:[UIColor clearColor]];
[nameField setImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
[v addSubview:nameField];
UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Delete selected pods from server?" message:
@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[av setValue:v forKey:@"accessoryView"];
av.message = @"This will delete all the posts related to the pictures you want to delete!";
[av show];
使用上面的代码我得到的是:
我想要消息旁边的复选框..
对如何进行有任何帮助或建议吗?
您可以使用 https://github.com/wimagguc/ios-custom-alertview 创建您的自定义内容视图并将其设置为
CustomIOS7AlertView *alertView = [[CustomIOS7AlertView alloc] init];
UIView *customView ..; //Your custom view
[alertView setContainerView:customView];
我建议你不要那样做。
accessoryView
不是 public 暴露的 API 并且您有应用被拒绝的风险UIAlertView
在 iOS8 中已弃用,请使用UIAlertController
你可以使用第三方库,我通常会在我的项目中集成MRProgress,你可以创建自己的nib并添加它。