这可能是一个简单的问题?
但我不知道如何在 的两个按钮之间放置空格UIAlertView
。所以请帮助我如何在 UIAlertView 的两个水平按钮之间放置空间。
UIAlertView 的代码:
在我的AlertView中,我还添加了UITextFiewd
-(void)add:(UIBarButtonItem *) sender
{
self.alertView = [[UIAlertView alloc] initWithTitle:alertViewTitle message:@"\n\n" delegate:self cancelButtonTitle:@"Cancle"
otherButtonTitles:@"Save",nil];
self.alertTxtField = [[UITextField alloc]initWithFrame:CGRectMake(15, 55, 260, 35)];
self.alertTxtField.backgroundColor = [UIColor whiteColor];
self.alertTxtField.returnKeyType = UIReturnKeyDone;
self.alertTxtField.delegate = self;
[alertView addSubview:self.alertTxtField];
[alertView show];
}
我的截图:
提前致谢 :)