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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T16:42:11+00:00 2026-05-15T16:42:11+00:00

I have a UILabel that I need to get the value from as an

  • 0

I have a UILabel that I need to get the value from as an integer so I can save it to my Core Data object but I keep getting this error and failure at this point.

PurchaseOrderItem *newPOItem = (PurchaseOrderItem*) [NSEntityDescription insertNewObjectForEntityForName:@"PurchaseOrderItem" inManagedObjectContext:managedObjectContext];
            int qty = [qtyTextField.text integerValue];
            [newPOItem setProductName:productName.text];
            [newPOItem setDescription:productDescription.text];
            [newPOItem setPrice:[NSDecimalNumber decimalNumberWithString: retailPrice.text]];
            [newPOItem setQuantity:qty];
            [newPOItem setPurchaseorder:newEntity];                                         

            if (![managedObjectContext save:&error]) {
                // Handle the error.
                NSLog(@"%@",error);
            }

EDIT:
Here is my final solution – seems totally ridiculous but it works:

NSDecimalNumber *price = [NSDecimalNumber decimalNumberWithString: [retailPrice.text stringByReplacingOccurrencesOfString:@"$" withString:@""]];
NSNumber *qty = [NSNumber numberWithInt: [qtyTextField.text integerValue]];
NSDecimalNumber *itemSubTotal =[price decimalNumberByMultiplyingBy:[NSDecimalNumber decimalNumberWithDecimal:[qty decimalValue]]]; 
  • 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-15T16:42:12+00:00Added an answer on May 15, 2026 at 4:42 pm

    I’m willing to bet that the quantity attribute of PurchaseOrderItem is declarated as NSNumber not NSInteger. If that’s the case you’ll need to do something similar to the following:

    [newPOItem setQuantity: [NSNumber numberWithInt: qty]];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ipad app that is loading data remotely into core data, I
I need to get the number of lines in a UILabel, so that I
I have a UITableView that has about 20 cells. Each has a UILabel within,
I have a UILabel that is a subview of a larger UIView. Is there
I have a UILabel in a custom UITableViewCell that gets resized when the device
I cannot seem to get my UI to update when my object that implements
i have a input tag which is non editable, but some times i need
If I have something like a UILabel linked to a xib file, do I
I have a .xib file containing a UIView and 2 UILabel subviews linked to
Consider I have the following text in a UILabel (a long line of dynamic

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.