2014-02-26 101 views

回答

0

正是我不知道,是有可能或沒有?但我有這樣的想法, 您需要創建自定義導航欄來做到這一點,您需要在創建時隱藏您的rootView控制器的導航欄。
EX -

self.rootNavigationController.navigationBarHidden = YES; 

那麼首先頂部UIImageView添加自定義圖像與它的具體尺寸,然後用2個按鈕添加自定義UINavigationBar(這是UIImageView/UIView或其他)之後。

0

你可以使用一個UIImageView的設置它的圖像按以下

- (void) viewDidLoad { 

    topImage = [[UIIImageView alloc] initWithFrame:CGRctZero]; 
    topImage.image = [UIImage imageNamed:@"topim"]; 
    [self.view addSubview:topImage]; 

    // Add your UINavigationController here (or in Interface builder) 
} 

- (void) viewWillLayoutSubviews { 

    topImage.frame = CGRectMake(0, 0, 320, 20); 
    navController.view.frame = CGRectMake(0, 20, 320, self.view.bounds.size.height - 20); 

} 
+0

這不起作用 – user1882758