ios - UIAlertViewStyleLoginAndPasswordInput with more TextFields? -
its possible add more textfields uialertviewstyleloginandpasswordinput?
how do?
or there other possibility?
yes possible can this
uialertview *myalertview = [[uialertview alloc] initwithtitle:@"your title here!" message:@"this gets covered" delegate:self cancelbuttontitle:@"cancel" otherbuttontitles:@"ok", nil]; uitextfield *mytextfield = [[uitextfield alloc] initwithframe:cgrectmake(12.0, 45.0, 260.0, 25.0)]; [mytextfield setbackgroundcolor:[uicolor whitecolor]]; [myalertview addsubview:mytextfield]; [myalertview show]; [myalertview release];
hope helps.
Comments
Post a Comment