The compiler complains about this, after I activated all kind of warnings:
I have an app delegate like this:
#import <UIKit/UIKit.h>
@class MyViewController;
@interface TestAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
MyViewController *myViewController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet MyViewController *myViewController;
@end
In the implementation file, I have the synthesize code:
@synthesize window;
@synthesize rootViewController;
At the end of the implementation file, the compiler complains:
At top level:
warning: passing argument 3 of 'objc_setProperty' as signed due to prototype
warning: passing argument 5 of 'objc_setProperty' with different width due to prototype
warning: passing argument 6 of 'objc_setProperty' with different width due to prototype
warning: passing argument 3 of 'objc_setProperty' as signed due to prototype
warning: passing argument 5 of 'objc_setProperty' with different width due to prototype
warning: passing argument 6 of 'objc_setProperty' with different width due to prototype
What does that mean? Must I worry about it?