Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6944745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:20:49+00:00 2026-05-27T13:20:49+00:00

What are alternatives for these controls in iPhone Radio Button Check Box Drop Down

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:20:49+00:00Added an answer on May 27, 2026 at 1:20 pm

    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:

    • Radio Button: UISegmnetedControl
    • Check Box: UISwitch
    • Drop Down: UIPickerView (used in UIWebView).

    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.

    +(NSString *)convertIntToSuperscript:(int)i {
        NSArray *array = [[NSArray alloc] initWithObjects:@"⁰", @"¹", @"²", @"³", @"⁴", @"⁵", @"⁶", @"⁷", @"⁸", @"⁹", nil];
        if (i >= 0 && i <= 9) {
            NSString *myString = [NSString stringWithFormat:@"%@", [array objectAtIndex:i]];
            [array release];
            return myString;
        }
        else {
            NSString *base = [NSString stringWithFormat:@"%i", i];
            NSMutableString *newString = [[NSMutableString alloc] init];
            for (int b = 0; b<[base length]; b++) {
                int temp = [[base substringWithRange:NSMakeRange(b, 1)] intValue];
                [newString appendString:[array objectAtIndex:temp]];
            }
            [array release];
            NSString *returnString = [NSString stringWithString:newString];
            [newString release];
            return returnString;
        }    
    }
    

    For a hyperlink, use a UITextView with Property Inspector -> Detection -> Links enabled and Editable behavior disabled. Of course this is also available in a UIWebView.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

WinJS.UI.getControl is not defined in VS 11 Ultimate. Is there any alternatives there to
Are there alternatives to gitosis that are easier to use? I currently run gitosis
What alternatives are there to GAE, given that I already have a good bit
When using Entity Framework 4.1, are there alternatives to the naming conventions for Navigation
Are there any alternatives to The CMU Pronouncing Dictionary , commercial or open source?
Are there any alternatives to JSTL? One company I worked for 3 years ago
Are there any alternatives to the Open Source Job Scheduler ? I'm looking for
Are there any alternatives to py2exe?
Are there any alternatives to stat (which is found on most Unix systems) which
Is there any alternatives to the print statement for output in Python. Also, how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.