1
vote
Obtaining an NSDecimalNumber from a locale specific string?
This seems to work:
NSString *s = @"0.07";
NSScanner* scanner = [NSScanner localizedScannerWithString:s];
NSDecimal decimal;
[scanner scanDecimal:&decimal];
NSDecimalNumber *de …
1
vote
How do you sync a Core-Data application between a Mac and a iPhone?
Core Data does not exist on the iPhone, so you'll need to use something else for the iPhone portion at least. In fact, if you want to share a significant amount of code between the iPhone and Mac …
