我有這樣的簡單的故事板:Segue公司推動畫被閃爍在iOS 7
所有這些的UIViewController背景是清楚的(透明)的,但我把背景圖像作爲導航欄和窗口使用此代碼背景:今天,當我嘗試建立它在iOS 7
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// window background
self.window.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"window"]];
// navbar background
UIImage *navBackgroundImage = [UIImage imageNamed:@"navbar_bg"];
[[UINavigationBar appearance] setBackgroundImage:navBackgroundImage forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
return YES;
}
通常這個代碼適用於iOS 6無閃爍,但是,在SEGUE動畫(推送)閃爍。看起來UIViewController背景不完全透明。
請看看這個視頻:http://www.youtube.com/watch?v=-oZc9SwPJjs
謝謝