0

I implemented -(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section and my footer shows up below the last UITableView cell. So far so good.

Is there a way to make the footer view stick to the bottom of the screen? If there are only a few rows to the table view it is kind of weird that there is white after the footer. In CSS I would be looking for something like bottom: 0px

Thanks

4

1 に答える 1

1

画面の下部にフッターとして使用するビューがある場合、十分なセルがない場合は、とにかく最後のテーブルビューセルとフッターの間に空白が表示されます。

画面の下部に固定ビューが必要な場合は、テーブルビューから分離する必要があります。フッタービューとテーブルビューの2つのサブビューを備えた標準のビューコントローラーがあります。

つまり、をに変更する必要がありUITableViewControllerますUIViewController。これには、テーブルビューをプロパティとして手動で追加し、宣言して割り当てdatasourcedelegateインターフェイス宣言で行うことが含まれます。

于 2013-02-09T10:54:55.937 に答える