我試圖有一個頁腳固定在一個可用視圖的底部。它將始終處於最底層,不能與表格單元格一起滾動。它也不能切出,像單元格覆蓋可用視圖的最後一個單元格,因此一個單元格將被隱藏。我有以下的頭文件:修復了UItableview的頁腳。總是在頁腳位置
//fooer contains a number_of_total_clicks label, an a proceedtopayment button.
@interface checkout : UITableViewController
@property (retain, nonatomic) IBOutlet UILabel *number_of_total_clicks;
- (IBAction)proceedtonextview:(id)sender;
@property (retain, nonatomic) IBOutlet UIView *footer; //?
@property (strong, nonatomic) NSMutableDictionary *items_clicked;
@end
and in my .m file
- (void)viewDidLoad
{
[super viewDidLoad];
//self.tableView.tableFooterView= footer; ??
[email protected]"0";
}
//void or IBAction?V
- (void)add_item_to_array_of_clicks_which_will_increment_number_of_total_clicks_value:(id)sender{
number_of_total_clicks.text=[NSString stringWithFormat:@"$%.2f",[sender doubleValue]*5];
[self.tableView reloadData];
}
會發生什麼事是我得到一個頁腳基本上是連接表中的最後一個單元格,所以如果表只有3個單元,「頁腳」與number_of_total_clicks會作爲第四個單元附加。如果有45個單元格,一旦我一直向下滾動,他的頁腳就是他的第46個單元格。我希望它固定在底部。謝謝
對不起,能否詳細說明一下?我在編程方面遇到了麻煩。我如何將它放在self.view的最底部? – 2012-04-19 03:36:31