Results 26 comments of Andrey Kadochnikov

here is a quote from Core Data Programming Guide: > A coordinator can only be associated with one managed object model. If you want to put different entities into different...

There is another way to separately working with multiple persistent stores - using separate contexts which attached to certain persistent store coordinator (by setting `persistentStoreCoordinator` property).

> Regarding your second post, the whole intention of PFIS (and all other NSIncrementalStore implementations such as AFIncrementalStore) is that you, as the developer, only interact with Core Data in...

Well actually my manager said that if we are able to decrease **API-request frequency**, we'd better do this. I have no idea how strong the user-loading will be :)

actual request limit pricing here ![2014-05-14 20 08 52](https://cloud.githubusercontent.com/assets/1947169/2973887/13e63fe2-db82-11e3-9309-687dabc3772e.png)

I assume the more requests our app sends the higher burst will be while thousands of users are working at the same time. Isn't?

Well I really hope you are right. Becaue I really don't want to mess with all that core-data stuff :+1:

ok, why not this: ``` let df = NSDateFormatter() df.locale = NSLocale(localeIdentifier: "en_US_POSIX") var dayDateFormat: String! switch dateStyle { case .CalendarLongStyle: dayDateFormat = "YYYY-MM-DD" case .CalendarShortStyle: dayDateFormat = "YYYYMMDD" ......

My error: ``` Traceback (most recent call last): File ".../objc_strings.py", line 212, in main() File ".../objc_strings.py", line 209, in main show_untranslated_keys_in_project(project_path, options.exclude_dirs) File ".../objc_strings.py", line 175, in show_untranslated_keys_in_project keys_set_in_strings =...