Trevor Harmon
Trevor Harmon
The Objective-C libraries I have used for JSON, such as [JSONModel](https://github.com/icanzilb/JSONModel), support reflection when decoding. This is good because JSON requests are often simple, while the responses are complex. For...
In AFBlurSegue.m, line 35: ``` UIImage *background = [UIImage new]; ``` This initialization is unnecessary and triggers an error in Xcode Analyzer.
The strokeColor property is defined as: ``` @property (assign, nonatomic) UIColor *strokeColor; ``` I think that should be strong, not assign.