0
我可以在表視圖的不同部分有不同的行配置嗎?我可以在表視圖的不同部分有不同的行配置嗎?
此方法不包含部分參數:
-(UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
那麼是否有可能在同一個表視圖不同部分有什麼不同?
我可以在表視圖的不同部分有不同的行配置嗎?我可以在表視圖的不同部分有不同的行配置嗎?
此方法不包含部分參數:
-(UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
那麼是否有可能在同一個表視圖不同部分有什麼不同?
是的,你可以在不同的視圖部分有不同的配置。
其實indexPath.row會給你行索引,indexPath.section會給你索引。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"You are at row = %d and section = %d",indexPath.row,indexPath.section);
}
取決於這兩個索引,你可以指定不同的配置。
Jim。