ParseModel-iOS icon indicating copy to clipboard operation
ParseModel-iOS copied to clipboard

Hassel-free data models for the Parse iOS SDK.

Results 4 ParseModel-iOS issues
Sort by recently updated
recently updated
newest added

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 :...