0
我看到了答案在這裏:How to disable the edit button that appears in the more section of a UITabBarController?但我不知道在哪裏把代碼。從UITabBar的更多部分刪除「編輯」按鈕
現在我有一個通用的應用程序,與多個視圖控制器,代碼去哪裏?解決方案也表示「成爲moreViewController的委託人」,我該怎麼做?
我看到了答案在這裏:How to disable the edit button that appears in the more section of a UITabBarController?但我不知道在哪裏把代碼。從UITabBar的更多部分刪除「編輯」按鈕
現在我有一個通用的應用程序,與多個視圖控制器,代碼去哪裏?解決方案也表示「成爲moreViewController的委託人」,我該怎麼做?
添加一行的生命週期方法的代碼,即應用程序沒有完成的選項啓動:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
tabBarController.customizableViewControllers=nil;
}
你知道如何風格化,更多的屏幕,如表之類的東西? – gikygik
@ShawnaMacNabb是的,你可以,我已經粘貼了一個示例代碼片段[這裏](http://pastebin.com/RXNE9sWF),希望它有幫助,謝謝:) –