#import "ViewController.h"
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
{
NSArray *_dataList;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
tableView.dataSource = self;
tableView.delegate = self;
[self.view addSubview:tableView];
// _dataList = [UIFont familyNames];
/*
从工程目录中读取文件
*/
NSString *path = [[NSBundle mainBundle]pathForResource:@"font" ofType:@"plist"];
_dataList = [NSArray arrayWithContentsOfFile:path];
NSLog(@"%@",_dataList);
}
#pragma mark -- UITableViewDataSource
//可选方法:返回 组个数
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return _dataList.count;//组个数
}
//返回 每个组有多少个单元格
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
//1.从datalist 中获取section 下标对一个的对象 -- > 小数组(盛放的NSString)
NSArray *suArray = _dataList[section];
return suArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//1.
static NSString *identifier = @"font_cell";
//2.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
//3.
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
//1.不分组的情况下
// cell.textLabel.text = [_dataList objectAtIndex:indexPath.row];
//
// cell.textLabel.font = [UIFont fontWithName:[_dataList objectAtIndex:indexPath.row]size:20];
//2.分组
//1.在datalist中 找到section对应的二级数组
NSArray *subArray = _dataList[indexPath.section];
//2.在二级数组中 找到row 对应的字符串对象
cell.textLabel.text = subArray[indexPath.row];
cell.textLabel.font = [UIFont fontWithName:subArray[indexPath.row] size:20];
return cell;
}
@end
section //组的下标
cancel //取消
Day.02.29 UI表视图数据
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 3、录入业务数据 销售订单抬头和明细的数据,也可以如上一步骤一样通过表数据浏览编辑工具(TCode:SE16/SE...
- 一、UITableViewUITableView,也就是表视图,可以算是app中最重要的视图了,随处可见,中间这一...