UITableview如何在tableview中显示图像

时间:2012-12-14 08:47:49

标签: iphone ios xcode

enter image description here ViewController.h

#import <UIKit/UIKit.h>

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

ViewController.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单元格上显示这些图像。

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

我的风格只是编码。我不使用故事板。

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

你的数据源是什么? xml tableview单元格

这样静态的 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];