[window_ addSubview:[container_ view]];
// Show pinstripes while loading data.
- [[container_ view] setBackgroundColor:[UIColor performSelector:@selector(pinStripeColor)]];
+ [[container_ view] setBackgroundColor:[UIColor pinStripeColor]];
[self performSelector:@selector(loadData) withObject:nil afterDelay:0];
}
- (UIView *) view;
@end
+@interface UIColor (Apple)
++ (UIColor *) pinStripeColor;
+@end
+
@interface UIControl (Apple)
- (void) addTarget:(id)target action:(SEL)action forEvents:(NSInteger)events;
@end