I'm trying to create my own Custom Delegates in iOS 5. In iOS 4, I usually used the 'Assign' property:
@property(nonatomic, assign) id<AnyProtocol> delegate;
Now, when I try to synthesize, I get the following error message:
error: Automatic Reference Counting Issue: Existing ivar 'delegate' for unsafe_unretained property 'delegate' must be __unsafe_unretained
Any ideas ?