Objective-C Category Causing unrecognized selector
A couple possibilities: You did not link UIImage+TTShare.m into your target. So while you have the header, you’re not compiling the implementation. If this is part of a static library, you need to add -all_load to the Other Linker Flags build setting for the app linking against the library.