-2

在此处输入图像描述视图控制器.h

#import <UIKit/UIKit.h>

@interface TableViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>
{
    UITableView *table;
    NSArray *tableData;
}
@end

视图控制器.m

#import "TableViewController.h"

@interface TableViewController ()

@end

@implementation TableViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    table.delegate = self;
    table.dataSource = self;

    table = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewCellStyleDefault];
    [self.view addSubview:table];


    tableData = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"StopWatch.png"],[UIImage imageNamed:@"TrashCan.png"],[UIImage imageNamed:@"Key.png"],[UIImage imageNamed:@"Telephone.png"],[UIImage imageNamed:@"ChalkBoard.png"],[UIImage imageNamed:@"Bucket.png"],nil];

}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [tableData count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"SimpleTableItem";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil)
    {
        //cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    cell.imageView.image = [tableData objectAtIndex:indexPath.row];
    return cell;
}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    NSString *str = @"TableViewSection";
    return str;
}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 22;
}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 80;
}

@end

我想在 tableview 单元格上显示这些图像。

请告诉我,如何在表格视图单元格上显示图像。

我的风格只是编码。我不习惯故事板。

4

2 回答 2

1

您在对象初始化之前分配delegateanddataSource属性,请尝试更改顺序,如下所示:

table = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewCellStyleDefault];
table.delegate = self;
table.dataSource = self;
于 2012-12-14T08:59:26.180 回答
0

你的数据源是什么?xml 表格视图单元格

这样静态 cell.imageView.image = [UIImage imageNamed:@"Maps-icon.png"]; cell.imageView.highlightedImage = [UIImage imageNamed:@"Maps-icon.png"]; 或者

[cell.imageView setImageWithURL:[NSURL URLWithString:[newsItem objectForKey:@"image"]]
               placeholderImage:[UIImage imageNamed:@"placeholder"]];

newsItem NSDictionary

NSDictionary *newsItem = [soapSource objectAtIndex:indexPath.row];

于 2012-12-14T09:42:06.117 回答