0

この画像のように、uitableviewcell の下部に情報テキスト ('Please note that...') を追加する方法:

ここに画像の説明を入力

4

2 に答える 2

2

試してみてください- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
    if (section == 0) {
        return @"This text is below the TableView!";
    }
    return nil;
}

追加のドキュメントは、ここにあります。

于 2012-11-24T18:39:09.593 に答える
2

そのスクリーン ショットで見ているものは、UITableViewCell の一部ではありません。テーブルのフッター(テーブルの機能)です。目的のコンテンツを含む UILabel を作成し、それをテーブルの に設定してみてくださいtableFooterView

于 2012-11-24T18:39:22.590 に答える