Create default iPad split view based apps from template from xcode 4, then we have codes like
@synthesize popoverController=_myPopoverController;
in file DetailViewController.m
My question is
what is “_myPopoverController” ? We do not declare such attribute in the interface, why introduce this magically ?
The Objective-C Programming Language Guide says this:
That means the instance variable
_myPopoverController(or whatever name you put here) will be considered as if you would declare it in the @interface section.