MTLManagedObjectAdapter
MTLManagedObjectAdapter copied to clipboard
Core Data support for Mantle
…d when compiling for Objective-C++
Old code only support NSAttributeDescription and NSRelationshipDescription. This pull request support NSFetchedPropertyDescription(Fetched Property)
Hi - I'm integrating this project into a swift project using Cocoapods frameworks - and all is well when building etc. However when uploading to the store, I have only...
Hey all - Not sure if this is already addressed by a feature I don't know, but I was wondering if people would think it would be appropriate to have...
I have model, with field "deleted". Since xcode 7.1 this field can not be converted from managed object to model. It's always equals 0, no matter what is stored in...
Hi, I'm the guy who pushed `MTLManagedObjectAdapter` to Cocoapods. It's my fault that I set the `deployment_target` of iOS to 8.0 and of OS X to 10.9. as mentioned in...
I have a single APIImage class which inherits from MTLObject. I would like this class to implement the MTLManagedObjectSerializing protocol but I've run into a bit of a snag. My...
when error is used inside a block of _-enumerateKeysAndObjectsUsingBlock:_. It setups an autorelease pool, by the time it returns, any out error will be deallocaed. we need to use __block,...
replace all the if (managedObjectKey == nil) to if (managedObjectKey == nil || [managedObjectKey isEqual:[NSNull null]]) will resolve the crash issue.
Xcode won't show documentation comments when option-clicking unless we use `///` to indicate them.