Closed lilyball closed 7 years ago
Thanks for your feedback.
Is the custom -awakeFromNib implementation only done for the context capture feature? In other words, if one doesn't use context capture, can one avoid the custom implementation?
The custom implementation is needed for all features, sorry. By the way the latest version uses swizzling instead of category overload.
Whoa, thanks for making that change!
No problem, thanks for pointing it out!
By using categories to implement this method, you're going to have a problem if UIKit ever decides to implement this method themselves on these classes. At the very least you should use method swizzling, so you can call the original method (if it's implemented, which you'd have to test for).