enter image description here我有定製的tableview細胞的底部設置一個總按鈕,我想在的tableview的可點擊的我有自定義的tableview細胞和我在的tableview
UIButton*yourBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[yourBtn setImage:[UIImage imageNamed:@"wishlist"] forState:UIControlStateNormal];
//[yourBtn setTitle:@"+" forState:UIControlStateNormal];
yourBtn.frame = CGRectMake(0, self.view.bounds.size.height -100, buttonwidth, buttonheight);
yourBtn.center = CGPointMake(self.view.center.x, self.view.bounds.size.height -100);
[yourBtn addTarget:self action:@selector(addButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:yourBtn];
底部設置一個整體的按鈕
如果我滾動tableview中按鈕也從頂部滾動bottom.i要設置按鈕時不斷滾動的tableview
如何獲得這樣
爲什麼你不使用故事板它更容易 –
你有沒有嘗試過把它添加爲表格頁腳? https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableView_Class/index.html#//apple_ref/occ/instp/UITableView/tableFooterView – Losiowaty
試試這個[self.tableview addSubview:yourBtn]; – MuraliMohan