如何在UITableView中显示多行

时间:2011-03-21 05:10:28

标签: iphone objective-c cocoa-touch uitableview

我是Sirisha。我是开发iPhone的新手。我想在表格视图中显示多行(例如:One 10,Two 15等)请帮帮我。

2 个答案:

答案 0 :(得分:2)

你可以通过使用表第1部分包含10第2部分包含15

来完成此操作
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 2;       //one section in the table.
}

然后使用此方法添加行数

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
        //number of rows in the section

如果第1节那么 回来10 如果第2节 返回15

答案 1 :(得分:0)

在视图中,load应该为行数组分配一个数组 rowArray = [NSArray alloc] initWithObjects:@“A”,@“B”,@“C”,nil];

  • (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    返回1; }

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return [rowArray count];

}

它将在表格视图中返回3行,其中包含1个部分