#import "ViewController.h"
#import "friend.h"
#import "friendViewController.h"
#import "model.h"
@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
{
friend *fri;
model *models;
UITableView *_table;
NSMutableArray *arraymodel;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//
NSString *path = [[NSBundle mainBundle]pathForResource:@"friends.plist" ofType:nil];
NSArray *array = [[NSArray alloc]initWithContentsOfFile:path];
arraymodel = [NSMutableArray array];
for (NSDictionary *dics in array) {
//初始化模型
models = [[model alloc]init];
models.friends = dics[@"friends"];
models.name = dics[@"name"];
models.online = dics[@"online"];
//将模型的对象添加到数组
[arraymodel addObject:models];
}
//初始化表格
_table = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStylePlain];
_table.delegate = self;
_table.dataSource = self;
[self.view addSubview:_table];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return arraymodel.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellId = @"cellID";
UITableViewCell *cell
= [tableView dequeueReusableCellWithIdentifier:cellId];
if (!cell) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellId];
}
model *mo = [[model alloc]init];
mo = arraymodel[indexPath.row];
cell.textLabel.text = mo.name;
cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",mo.online];
return cell;
}
@end
iOS-Plist
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 由于实验室项目的需要将数据存入plist,遇到了无法将数据写入plist的情况,现在将遇到的两种问题以及解决方法。...
- pip及setup.py安装均报错删除Python/Lib下的fcntl.py及fcntl.pyc从以下链接重新下...