首页 > 移动平台 > 详细

ios成长之每日一遍(day 8)

时间:2014-05-31 11:25:55      阅读:385      评论:0      收藏:0      [点我收藏+]

这几天都有一些任务要跟, 把ios的学习拉后, 看看要抓紧咯, 看看轮到的学习的是UITableView。

BIDViewController.h

bubuko.com,布布扣
#import <UIKit/UIKit.h>

@interface BIDViewController : UIViewController
<UITableViewDataSource, UITableViewDelegate>

@property (copy, nonatomic) NSArray *computers;

@end
bubuko.com,布布扣

 

BIDViewController.m

bubuko.com,布布扣
#import "BIDViewController.h"
#import "BIDNameAndColorCell.h"

@implementation BIDViewController

static NSString *CellTableIdentifier = @"CellTableIdentifier";    // 重用标记

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.computers = @[
    @{@"Name" : @"MacBook", @"Color" : @"White"},
    @{@"Name" : @"MacBook Pro", @"Color" : @"Silver"},
    @{@"Name" : @"iMac", @"Color" : @"Silver"},
    @{@"Name" : @"Mac Mini", @"Color" : @"Silver"},
    @{@"Name" : @"Mac Pro", @"Color" : @"Silver"}];    // 为NSArray赋数值

    UITableView *tableView = (id)[self.view viewWithTag:1];    // 这个view是controller管理的, viewWithTag是根据设定的tab
    tableView.rowHeight = 65;    // 设置每行的高度
    UINib *nib = [UINib nibWithNibName:@"BIDNameAndColorCell"
                                bundle:nil];
    [tableView registerNib:nib
    forCellReuseIdentifier:CellTableIdentifier];
}

#pragma mark -
#pragma mark Table Data Source Methods
- (NSInteger)tableView:(UITableView *)tableView
 numberOfRowsInSection:(NSInteger)section
{
    return [self.computers count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    BIDNameAndColorCell *cell = [tableView dequeueReusableCellWithIdentifier:CellTableIdentifier];
    
    NSDictionary *rowData = self.computers[indexPath.row];
    
    cell.name = rowData[@"Name"];
    cell.color = rowData[@"Color"];
    
    return cell;
}

@end
bubuko.com,布布扣

 

 

 

 

 

 

ios成长之每日一遍(day 8),布布扣,bubuko.com

ios成长之每日一遍(day 8)

原文:http://www.cnblogs.com/lee0oo0/p/3761337.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!