0

MY UITableview Group 样式仅显示 4 个元素的数组中的一个值。

在 viewdidload 我添加以下数组

    _displayThemeItems=[[NSArray alloc]initWithObjects:@"Default",@"Night",@"Sepia" ,@"Blue" ,nil];
    _displayThemeIcons=[[NSArray alloc]initWithObjects:[UIImage imageNamed:@"day.png"],[UIImage imageNamed:@"night.png"],[UIImage imageNamed:@"sepia.png"], [UIImage imageNamed:@"blue.png"],nil];

和我的表委托方法

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

      return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

        return [_displayThemeItems count];


}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{



    static NSString *CellIdentifier=@"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    // No cell available - create one.
    if(cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                           reuseIdentifier:CellIdentifier];}
    NSLog(@"rray%@",_displayThemeItems);
    cell.textLabel.text = [_displayThemeItems objectAtIndex:indexPath.row];
    cell.imageView.image=[_displayThemeIcons objectAtIndex:indexPath.row];

     return cell;
}
4

2 回答 2

0

在返回之前添加“}”,以便设置标题和图像的代码位于“if”语句下。

于 2013-04-28T10:10:35.467 回答
0

您的代码对我来说看起来不错,我认为艾米影响您看到的结果的唯一原因是您如何设置表格视图。
确保您的表格视图框架足以显示 4 个项目,并确保您设置了表格视图数据源。

于 2013-04-27T23:29:49.820 回答