application:didFinishLaunchingWithOptions:メソッド中に「wait_fences:failed to receive reply:10004003」が表示されます。
UIWindowをサブクラス化し、エラーの原因となっているdrawRectメソッドをオーバーライドしました。ただし、エラーが何を伝えようとしているのか、なぜ発生しているのか、どのように修正するのかはわかりません。
- (BOOL) application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
window_ = [[OoviumWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[window_ makeKeyAndVisible];
controller_ = [[AetherController alloc] init];
[window_ setRootViewController:controller_];
return YES;
}
@implementation OoviumWindow
- (id) initWithFrame:(CGRect)rect {
if (self = [super initWithFrame:rect]) {
_image = [[UIImage imageNamed:@"Default-Portrait.png"] retain];
}
return self;
}
// UIWindow ======================================================================================
- (void) drawRect:(CGRect)rect {
[_image drawInRect:_rect blendMode:kCGBlendModeNormal alpha:.05];
}
@end