actionSheet в приложении iphone - PullRequest
       0

actionSheet в приложении iphone

0 голосов
/ 24 декабря 2010

Я новичок в iphone. Можно ли сохранить 3 текстовых поля, 3 ярлыка и 2 кнопки в листе действий или в окне оповещения. Пожалуйста, дайте информацию.

Заранее спасибо.

1 Ответ

0 голосов
/ 24 декабря 2010

Вы можете попробовать это как:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"\n\n\n\n\n\n\n\n\n\n" message:@"" delegate:self cancelButtonTitle:@"Cancel"  otherButtonTitles:@"OK", nil];

UITextField *textfield1 = [[UITextField alloc] init];
textfield1.frame = CGRectMake(10.0, 30.0,260.0, 15.0);//set your frame as you required
textfield1.text=@"";
[textfield1 setBackgroundColor:[UIColor whiteColor]];
[alert addSubview:textfield1];
[textfield2 release];

UITextField *textfield2 = [[UITextField alloc] init];
textfield2.frame = CGRectMake(10.0, 48.0,260.0, 15.0);//set your frame as you required
textfield2.text=@"";
[textfield2 setBackgroundColor:[UIColor whiteColor]];
[alert addSubview:textfield2];
[textfield2 release];

UITextField *textfield3 = [[UITextField alloc] init];
textfield3.frame = CGRectMake(10.0, 65.0,260.0, 155.0);//set your frame as you required
textfield3.text=@"";
[textfield3 setBackgroundColor:[UIColor whiteColor]];
[alert addSubview:textfield3];
[textfield3 release];

UIView *tempView = [[UIView alloc]initWithFrame:CGRectMake(10.0, 80.0, 260.0, 100.0)];//set your frame as you required
tempView.backgroundColor = [UIColor clearColor];
[alert addSubview:tempView];

UILabel *label1 = [[UILabel alloc]init];
label1.frame = CGRectMake(0, 5, 50, 15);//set your label frame here
label1.text = @"Enter text";
[tempView addSubView:label1];
[label1 release];

UILabel *label2 = [[UILabel alloc]init];
label2.frame = CGRectMake(0, 25, 50, 15);//set your label frame here
label2.text = @"Enter text";
[tempView addSubView:label2];
[label2 release];

UILabel *label3 = [[UILabel alloc]init];
label3.frame = CGRectMake(0, 45, 50, 15);//set your label frame here
label3.text = @"Enter text";
[tempView addSubView:label3];
[label3 release];

UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
button1.frame = //set your button frame here
[tempView addSubview:button1];

UIButton *button2 = [UIButton buttonWithType:UIButtonTypeCustom];
button1.frame = //set your button frame here
[tempView addSubview:button2];

[tempView release];
[alert show];
[alert release];
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...