0

ストーリーボードにはUITableViewがあり、次のプロパティがあります

Style: Grouped
Content: Dynamic Prototypes

私の質問は、さまざまなグループを作成する方法でした。今アプリを実行すると、テキストが上に配置された白い裏地はありません(デフォルトの裏地のみ)。また、これらの動的グループを作成した場合、ヘッダーとフッターをどのように設定しますか?

ありがとう

4

1 に答える 1

0
  - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 2;

    }
    -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

        // implement your code

    }
    -(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{

        //implement your code
    }
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

     /// Write basic code//

switch (indexPath.section) {
        case 0:
//It belongs to  first group and implement your code.
               break;
        case 1:
//It belongs to second group and implement your code.
               break;


}

お役に立てればと思います

于 2012-05-23T08:44:23.250 に答える