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

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -