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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -