浦島太郎状態だったXcode4をさわってリハビリ中。よくみるとXcodeが生成するコードのテンプレートがだいぶかわっている。特に気になったのが以下の点。 インスタンス変数の宣言がなくなってる @interface DelegateDemoAppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @property (strong, nonatomic) DelegateDemoViewController *viewController; @synthesizeの書式が変わっている @implementation DelegateDemoAppDelegate @synthesize window = _window; @synthesize viewController = _viewContro