I know I can define a delgate in my .h file as follows:
@property (nonatomic, weak) id <MyClassDelegate> delegate;
and I found this declaration works too:
@property (nonatomic, weak) id delegate;
I use xcode 4.6 and the lastest sdk. My question is: would the compiler automatically look for the "MyClassDelegate" in .h file?