2010-09-16 40 views
0

我想要在所有導航選項卡上使用相同的分段控件,並在其中使用段值更改委託來更新當前選定的選項卡數據。 。我不想爲每個選項卡創建不同的控件。iphone uitabviewcontroller

請指導我。提前致謝。

問候, Malleswar

回答

0

你需要讓你的UISegmentedControlUITabBarController視圖的同行。因此,它應該是這樣的:

 
------------------- 
|UISegmentedControl | 
|-------------------| 
|     | 
|     | 
|     | 
|     | 
|     | 
|UITabBarController | 
|     | 
|     | 
|     | 
|     | 
|     | 
------------------- 

這裏的關鍵是,你UISegmentedControl需求不是UITabBarController視圖的子視圖,所以我會創建一個單獨的UIViewController子類,它擁有並勾畫出UISegmentedControlUITabBarController意見。

此外,我建議將UISegmentedControl嵌入UIToolBar。這看起來比將它放在空白視圖上要好很多。

相關問題