I\'m following the guide here to create a custom delegate. It runs fine but I get the following warning in xcode
DetailViewController.m:23:1: Autosynt
There's another method and this one worked for me:
@property (nonatomic, unsafe_unretained) id delegate;
You can then add this to the implementation without error:
@synthesize delegate;
Also: This is ARC compliant.