0
- 設置與UIViewController子類
- 進入IB視圖,並拉圖到iPhone
- 在UIView的 拉一個導航欄
- 在下面的空間上拉一個tableview。
當我運行界面生成器時,一切都顯得很好。
但這些東西不起作用。
如果我在導航欄的頂部添加一個按鈕,按鈕會出現,但是不會調用IBAction。該按鈕似乎在導航欄下方的某個級別(其他地方)
如果爲tableView添加頁腳視圖,它不會出現。我相信了UIView再次掩蓋它或東西...
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section { UIView *viewForFooter = [[UIView alloc] init ]; UIButton *footerButton = [[UIButton alloc] initWithFrame:CGRectMake(200, 40, 100, 40)]; footerButton.titleLabel.text = @"Forgot Login"; //self.forgotLogin = footerButton; [viewForFooter addSubview:footerButton]; return viewForFooter; }
爲什麼?
您必須使用IB將按鈕鏈接到選擇器。你做到了嗎? –
您是否設置表視圖的委託和數據源?另外,您是否設置了「UINavigationController」? – Katfish
請編輯您以前的帖子[UIBarButtonItem沒有響應點擊](http://stackoverflow.com/questions/6445170/uibarbuttonitem-not-reacting-to-click),而不是爲同一問題做出新的職位。 –