We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
local alert = UIAlertView:initWithTitle_message_delegate_cancelButtonTitle_otherButtonTitles("title", "message", nil, "cancel", "continue", nil)
otherButtonTitles can take multiple arguments, how can I pass the parameters?
The text was updated successfully, but these errors were encountered:
variable method can't be called dynamically. you can use like this:
local alert = UIAlertView:init(); alert:setTitle(title); alert:setMessage("aaaa"); alert:setTitle("bbbb"); alert:setDelegate(self); alert:addButtonWithTitle("cancel"); alert:addButtonWithTitle("ok"); alert:setTag(20147701); alert:show();
Sorry, something went wrong.
No branches or pull requests
otherButtonTitles can take multiple arguments, how can I pass the parameters?
The text was updated successfully, but these errors were encountered: