我正在构建一个 iphone 应用程序,当我运行我的应用程序时,我有一个包含 99 条记录的数组,然后cellForRowAtIndexPath
方法 indexPath.row
从 0 返回到 7。下面是我的代码
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[accountParser accounts]count];//it return 99 records
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
NSLog(@"Index : %d",indexPath.row);//this print index 0 to 7 only
}
return cell;
}