Hi when I try to save a phonenumber with this line to a coredata element
[newLead setValue:[NSNumber numberWithInteger:[self.cellTextField.text doubleValue] ] forKey:@"cell"];
Then I load it with this
[self.cellTextField setText:[[self.lead valueForKey:@"cell"] stringValue]];
It works but if the number is like 905666777 , that number is too big and i get 2147483647
How can i make it use a 905 number?
also when i dial the number using
NSURL *telUrl = [NSURL URLWithString:[@"tel://" stringByAppendingString:@"cell"]];
[[UIApplication sharedApplication] openURL:telUrl];
It only dials the first 3 digits 214, how can i make it dial all the digits
Thank you