What are alternatives for these controls in iPhone
- Radio Button
- Check Box
- Drop Down
- x raise to Power y in UILabel
- Hyperlink
Suggestion and answers will be appreciated, thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Almost all of these controls can be displayed using a UIWebView – if that’s not an option, have a look at the UIWebView implementations and it should give you some kind of idea.
However, if you want native controls, these are probably the best options:
x to the power of y in a UILabel is easy. Just replace your indices with unicode superscript characters… I use the following method to turn an integer into a string with superscript characters.
For a hyperlink, use a
UITextViewwithProperty Inspector -> Detection -> Linksenabled andEditablebehavior disabled. Of course this is also available in a UIWebView.