小编Lun*_*una的帖子

如何在iOS 7中向UIAlertView添加多个UITextField?

我需要在iOS 7的UIAlertView上添加Multiple UITextField吗?

 myAlertView = [[UIAlertView alloc] initWithTitle:@"Enter Your Detail" message:@"\n\n\n\n\n" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Register",nil];
txtEmail = [[UITextField alloc] initWithFrame:CGRectMake(30, 40, 220, 25)];
txtEmail.placeholder = @"email address";
txtFirstName = [[UITextField alloc] initWithFrame:CGRectMake(30, 70, 220, 25)];
txtFirstName.placeholder = @"first Name";
txtSurname = [[UITextField alloc] initWithFrame:CGRectMake(30, 100, 220, 25)];
txtSurname.placeholder = @"surname";
[myAlertView addSubview:txtEmail];
[myAlertView addSubview:txtFirstName];
[myAlertView addSubview:txtSurname];

[myAlertView show];
Run Code Online (Sandbox Code Playgroud)

在IOS 6中没问题,但在IOS 7中它没有显示UITextField

iphone ios

3
推荐指数
1
解决办法
5902
查看次数

标签 统计

ios ×1

iphone ×1