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 9206931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T00:16:53+00:00 2026-06-18T00:16:53+00:00

I have UITextfield that is set to show only 1 character upon initialization, however

  • 0

I have UITextfield that is set to show only 1 character upon initialization, however I use constraints to make the field be able to expand as needed.

My constraint:

@"H:[txtField(<=80)]-14-|

When I set the textField via the text attribute it resizes perfectly, however when I try and enter it in via the keyboard the best I can get is to use sizeToFit inside the shouldChangeCharactersInRange…which kind of works but instead of the dollar amount moving inward to the left on the iphone it moves outward to the right and off the screen.

How would I make it move inward to the left?

  • 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-06-18T00:16:54+00:00Added an answer on June 18, 2026 at 12:16 am

    I ended up using this little bit I found on StackOverflow in the

    shouldChangeCharactersInRange
    double currentValue;

    NSString *str;
    
    if(![textField.text length]){
        str = @"$ 0.00";
    }else{
        str = textField.text;
    }
    
    currentValue = [[str substringFromIndex:1] doubleValue];
    
    double cents = round(currentValue * 100.0f);
    
    if ([string length]) {
        for (size_t i = 0; i < [string length]; i++) {
            unichar c = [string characterAtIndex:i];
            if (isnumber(c)) {
                cents *= 10;
                cents += c - '0';
            }
        }
    } else {
        // back Space
        cents = floor(cents / 10);
    }
    
    textField.text = [NSString stringWithFormat:@"%.2f", cents / 100.0f];
    
    //Add this line
    [textField setText:[NSString stringWithFormat:@"$%@",[textField text]]];
    
    return NO;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have recently observed that you create 1 UITextField and set its UIKeyboardType to
I have a UITextField that I am adding to a UITableViewCell to use as
I have a UITextField that I set the inputView to a UIDatePicker so that
I've set up a UITableView with several custom UITableViewCell's that have some UITextField's and
I have a UIViewController that contains UITextField . I set the inputAccessory of the
I have a UITextField that I want to set into editing mode (keyboard on
I have a UITextField that I put into a UITableViewCell that I put into
I have a UITextField that I would like to enable auto completion on by:
i have uitextfield i wan that it should start entering text from top instead
I have a UITextField in my app that accepts decimal amounts for prices (i.e.,

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.