Objective-C Category Causing unrecognized selector

A couple possibilities:

  1. You did not link UIImage+TTShare.m into your target. So while you have the header, you’re not compiling the implementation.
  2. 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.

Leave a Comment