iphone - Drop-down menu in iOS alert -
i'm trying set labels areas of app dynamically of them show while others hidden. have alert prompts text fill these labels with, know options in advance , allow user choose options. there way have drop-down menu of options in ios alert rather simple text input? appreciated greatly.
you can't have dropdown menu can have multiple buttons, 1 every option.
uialertview *alertview = [[uialertview alloc] initwithtitle: @"title" message: @"message" delegate: self cancelbuttontitle: @"cancel" otherbuttontitles: @[@"option1", @"option2", @"option3"], nil];
Comments
Post a Comment