Non-prefixed methods (e.g.: + (RACSignal *)findAll) will conflict with other libraries (e.g. MagicalRecord) So, all methods should be renamed to prefixed version. old ``` + (RACSignal *)findAll; ``` new ``` + (RACSignal *)rac_findAll; ``` FYI: "Namespacing - NSHipster" http://nshipster.com/namespacing/
Non-prefixed methods (e.g.: + (RACSignal *)findAll) will conflict with other libraries (e.g. MagicalRecord)
So, all methods should be renamed to prefixed version.
old
new
FYI:
"Namespacing - NSHipster" http://nshipster.com/namespacing/