视图控制器.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 单元格上显示这些图像。
请告诉我,如何在表格视图单元格上显示图像。
我的风格只是编码。我不习惯故事板。