Tagged Questions
0
votes
0answers
27 views
Split currency symbol from the number inside the texfield
I´m having a problem related to the results in my textfields.What i want is a simple sum, which works if i don´t put the currency symbol inside the textfield(of course!!), for this i have:
...
1
vote
1answer
78 views
Expressing an NSNumber as a fraction in a UITextField
I am working on a matrix calculator which will put an mxn matrix into row echelon form. To present the matrix to the user I have set up an mxn grid of UITextFields. Everything works fine but the only ...
0
votes
4answers
126 views
Going crazy with UITextField
I'm literally going crazy whit these six rows of code.
NB: nome and prezzo are 2 textFields
NSString *itemName = (NSString *) [rowVals objectForKey:@"name"];
NSString *itemPrice = (NSString *) ...
2
votes
1answer
914 views
Formatting a UITextField as a price (XXX,XXX.XX)
I've been tearing my hair out trying to find a solution to this.
I simply want a UITextField to correctly format an inputted number as a price. That means only a single decimal point is allowed, two ...
3
votes
3answers
2k views
How do I set an Integer in a UITextfield using Core Data?
I can set text in my managed object like this...
[editedObject setValue:textField.text forKey:editedFieldKey];
but I can't set this...
[editedObject setValue:numberField.text ...