首页 > 其他 > 详细

简单天气应用开发——自定义TableView

时间:2016-02-11 15:41:28      阅读:89      评论:0      收藏:0      [点我收藏+]

  顺利解析JSON数据后,天气数据已经可以随意提取了,现在要做的就是建立一个简单的UI。

  实况信息较为简单,几个Lable就可以解决。主要是七天天气预报有点麻烦,那是一个由七个字典构成的数组,需要提取出每一天的数据,再组合之后显示在屏幕上。

  考虑到简便性,决定使用TableView加上自定义Cell。

  新建dailyCell类,同时建立同名xib文件,拖一个Cell,加上三个Lable

技术分享

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{
NSInteger row = [indexPath row];
static NSString *ID = @"Cell";
dailyCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
cell = [[[NSBundle mainBundle] loadNibNamed:@"dailyCell" owner:nil options:nil]lastObject];

}
tableView.separatorStyle = UITableViewCellSelectionStyleNone; //无边框
tableView.scrollEnabled = NO; //不可滚动
cell.selectionStyle = UITableViewCellSelectionStyleNone; //不可选中

cell.dateLable.text = self.data.dateArray[row];
cell.condLable.text = self.data.condArray[row];
cell.tmpLable.text = self.data.tmpArray[row];
return cell;

}

  用自定义Cell替换掉默认样式,七天天气预报的显示就此完成。

 

简单天气应用开发——自定义TableView

原文:http://www.cnblogs.com/fallinDeepSea/p/5186476.html

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