I am adding the SoundCloud API to an iOS project and I am not using ARC. The SoundCloud code uses
@property(nonatomic, strong, readonly) NSArray *accounts;
Should I just change this to
@property(nonatomic, retain) NSArray *accounts;
and carry on with GCC or should I change to the LLVM compiler?
Is there anything else to change if I go with the GCC route, I'm not 100% on how either option effects the project? Is it simply the change like above?