I started new project in XCode 4.2 without "Automatic Reference Counting" and without "Use Storyboard".
I chose a "Single View App" in the app template selection.
My AppDelegate.h
contains:
#import <UIKit/UIKit.h>
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@end
But the strong
value is allowed in iOS 4.x devices? If not how can I create apps for iOS4+ with the new XCode 4.2? Of course without downgrade XCode.
Thank you. Cheers.