2012年11月3日 星期六

[ iOS ] TableView 簡易教學 ﹣ 放置小圖示

1.請參考前一篇教學
2.把圖片拖拉至專案中。
3.新增圖示程式 (藍色字)


//
//  DLIViewController.m
//  tableView
//
//  Created by Lin Cheng-Min on 12/11/3.
//  Copyright (c) 2012 Lin Cheng-Min. All rights reserved.
//

#import "DLIViewController.h"

@interface DLIViewController ()

@end

@implementation DLIViewController
@synthesize listData;
- (void)viewDidLoad
{
    [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
    listData = [[NSArray alloc] initWithObjects:@"a",@"b",@"c", nil];

}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return [listData count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *tableIdentifier = @"Simple table";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:tableIdentifier];
    if(cell == nil){
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tableIdentifier];
    }
    cell.textLabel.text = [listData objectAtIndex:indexPath.row];
    UIImage *cellImage = [UIImage imageNamed:@"nkut_logo.jpg"];
    cell.imageView.image = cellImage;
    return cell;
}
-(void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
        cell.textLabel.text = [listData objectAtIndex:[indexPath row]];
}
@end




沒有留言:

張貼留言