TableView的使用

在界面上拖一个TableView控件在可视区域。定义一个Property List文件,里面是一个键值队的列表。
本代码
test.plist文件


代码如下!
//
// ViewController.h
// TableView1
//
// Created by Rayln Guan on 9/22/13.
// Copyright (c) 2013 Rayln Guan. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>

@property(nonatomic,retain) NSDictionary *dic;
@property(nonatomic,retain) NSArray *arr;

@end


//
// ViewController.m
// TableView1
//
// Created by Rayln Guan on 9/22/13.
// Copyright (c) 2013 Rayln Guan. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"plist"];
self.dic = [[NSDictionary alloc] initWithContentsOfFile:path];
self.arr = [self.dic allKeys];
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
NSLog(@"%i", [self.dic count]);
return [self.dic count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
NSString *key = [self.arr objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[self.dic objectForKey:key]];
return cell;
}

- (void)dealloc
{
NSLog(@"destory!!");
[super dealloc];
}
@end
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值