我想用導航欄和表格視圖來製作一個簡單的視圖。所以我創建了一個UINavigationController
的子類,並在其中添加了一個UITableView
。我的也是UITableViewDataSource
和UITableViewDelegate
。現在我想在導航欄中添加UIBarButton
,但它不工作:UIBarButton不會顯示在我的UINavigationController中
UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:[[Translator instance] getTranslation:@"Back"]
style:UIBarButtonItemStylePlain
target:self.parentViewController
action:@selector(dismissFiltersModal:)];
self.navigationItem.backBarButtonItem = anotherButton;
沒有錯誤時顯示的視圖,但不是按鈕。我該如何顯示它?
偉大工程:)因爲我呈現視圖爲模態的看法是有規定的方式,讓來電者MyController中的引用?因爲如果我使用self.parentViewController,它會引用UINavigationController nc,而不是從我提交模態視圖的對象(這是正常的我猜)。 – Alexis