ParseModel-iOS
ParseModel-iOS copied to clipboard
Hassel-free data models for the Parse iOS SDK.
Fixes #5.
This is due to the fact that - `PFUser` objects are subclasses of `PFObject` - unboxing logic checks for `PFObject` (which catches both `PFObject`s and `PFUser`s) before testing for `PFUser`....
I briefly looked at the code of `ParseModel` and didn't find anything in particular which kept `ParseModel` from being a category on `NSObject` rather than a class intended to be...
I've got two `ParseModel` subclasses: `Foo` and `Bar`. `Foo` holds an instance of `Bar` like so: ``` objc @interface Foo : ParseModel @property(nonatomic, strong) Bar *bar; @end @interface Bar :...