I'm trying to declare another window in MyThing.m
@property (nonatomic, strong) UIWindow *window;
But get this error
Illegal redeclaration of property in class extension "MyThing" (attribute must be 'readwrite', while its primary must be 'readonly')
If I rename window to something else, it is OK. Why is that? Is window meant to be declared once in the AppDelegate.h ?