UIWindow *second = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
NSMutableArray *wArray = [NSMutableArray arrayWithArray:[UIApplication sharedApplication].windows];
[wArray addObject:second];
[[UIApplication sharedApplication] setValue:wArray forKey:@"windows"];
This code crashed after KVC. I just want to test UIApplication's windows property.