自定cell(XIB)团购思路
自定cell(XIB)团购思路
步骤一、先解析plist文件,创建model层数据。
*)dict
{
self = [super
init];
if (self) {
[self
setValuesForKeysWithDictionary:dict];
}
return
self;
}
+ (instancetype)tgWithDict:(NSDictionary
*)dict
{
return [[self
alloc]
initWithDict:dict];
}
+ (NSMutableArray
*)tgs
{
NSArray *array = [NSArray
arrayWithContentsOfFile:[[NSBundle
mainBundle]
pathForResource:@"tgs.plist"
ofType:nil]];
NSMutableArray *arrayM = [NSMutableArray
array];
for (NSDictionary
*dict
in array) {
[arrayM
addObject:[self
tgWithDict:dict]];
}
return arrayM;
}
创建XIB文件,并设置控件内部细节。
2>
创建一个与XIB同名的类,注意自己定义的类继承自的对象,要与XIB中根对象的类保持一致。
3>
又一次指定XIB中的根类,打开助理编辑器辅助观察变化。
4>
对须要改动属性的控件做IBOutlet连线,注意,不要与TableViewCell的已经存在的属性重名
连线控件的名称不能是:
(1) textLabel
(2) detailTextLabel
(3) imageView
*)tableView
{
// 1.
可重用标示符
static
NSString *ID =
@"Cell";
// 2. tableView查询可重用Cell
HMTgCell *cell = [tableView
dequeueReusableCellWithIdentifier:ID];
// 3.
假设没有可重用cell
if (cell ==
nil) {
NSLog(@"载入XIB");
//
从XIB载入自己定义视图
cell = [[[NSBundle
mainBundle]
loadNibNamed:@"HMTgCell"
owner:nil
options:nil]
lastObject];
}
return cell;
}
- (void)setTg:(HMTg
*)tg
{
// setter方法中,第一句要赋值,否则要在其它方法中使用模型,将无法訪问到
_tg = tg;
self.titleLabel.text
= tg.title;
self.iconView.image
= [UIImage
imageNamed:tg.icon];
self.priceLabel.text
= tg.price;
self.buyCountLabel.text
= tg.buyCount;
}
#pragma mark -
模板提供的方法
/**
初始化方法
使用代码创建Cell的时候会被调用,假设使用XIB或者Storyboard。此方法不会被调用
*/
- (id)initWithStyle:(UITableViewCellStyle)style
reuseIdentifier:(NSString
*)reuseIdentifier
{
self = [super
initWithStyle:style
reuseIdentifier:reuseIdentifier];
if (self) {
NSLog(@"%s", __func__);
}
return
self;
}
/**
从XIB被载入之后,会自己主动被调用,假设使用纯代码。不会被运行
*/
- (void)awakeFromNib
{
NSLog(@"%s", __func__);
self.contentView.backgroundColor
= [UIColor
clearColor];
}
/**
Cell
被选中或者取消选中是都会被调用
假设是自己定义Cell控件,全部的子控件都应该加入到contentView中
*/
- (void)setSelected:(BOOL)selected
animated:(BOOL)animated
{
[super
setSelected:selected
animated:animated];
if (selected) {
self.contentView.backgroundColor
= [UIColor
redColor];
}
else {
self.contentView.backgroundColor
= [UIColor
greenColor];
}
}
数据源方法
- (NSInteger)tableView:(UITableView
*)tableView numberOfRowsInSection:(NSInteger)section
{
return
self.tgs.count;
}
- (UITableViewCell
*)tableView:(UITableView
*)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath
{
// 1.
创建cell
HMTgCell *cell = [HMTgCell
cellWithTableView:tableView];
// 2.
通过数据模型。设置Cell内容,能够让视图控制器不须要了解cell内部的实现细节
cell.tg
=
self.tgs[indexPath.row];
return cell;
}
{
return [[[NSBundle
mainBundle]
loadNibNamed:@"HMTgFooterView"
owner:nil
options:nil]
lastObject];
}
- (IBAction)loadMore
{
NSLog(@"载入很多其它");
// 1.
隐藏button
self.loadMoreButton.hidden
=
YES;
// 2.
显示提示视图
self.tipsView.hidden
=
NO;
// 3.1
推断代理是否实现了协议方法
if ([self.delegate
respondsToSelector:@selector(tgFooterViewDidDownloadButtonClick:)])
{
[self.delegate
tgFooterViewDidDownloadButtonClick:self];
}
}
/**
视图控制器刷新完毕调用方法
*/
- (void)endRefresh
{
// 4.
载入完毕数据
self.loadMoreButton.hidden
=
NO;
self.tipsView.hidden
=
YES;
}
HMTgFooterViewDelegate <NSObject>
@optional
/**
视图的下载button被点击
*/
- (void)tgFooterViewDidDownloadButtonClick:(HMTgFooterView
*)footerView;
@end
*)footerView
{
//
模拟取网络上获取数据载入数据
NSLog(@"努力载入数据中....");
dispatch_after(dispatch_time(DISPATCH_TIME_NOW,
(int64_t)(2.0
*
NSEC_PER_SEC)),
dispatch_get_main_queue(), ^{
//
获得网络数据之后运行的操作
//
向数组中加入数据,模拟网络载入完毕之后的效果
NSDictionary *dict =
@{@"title":
@"哈哈",
@"icon":
@"ad_00",
@"price":
@"100.2",
@"buyCount":
@"250"};
HMTg *tg = [HMTg
tgWithDict:dict];
NSLog(@"加数据前
%d",
self.tgs.count);
[self.tgs
addObject:tg];
NSLog(@"加数据后
%d",
self.tgs.count);
//
刷新数据
// [self.tableView reloadData];
//
新建一个indexPath
NSIndexPath *path = [NSIndexPath
indexPathForRow:(self.tgs.count
-
1)
inSection:0];
[self.tableView
insertRowsAtIndexPaths:@[path]
withRowAnimation:UITableViewRowAnimationMiddle];
//
通知页脚视图调整视图显示状态
[footerView
endRefresh];
});
}
自定cell(XIB)团购思路的更多相关文章
- AJ学IOS(16)UI之XIB自定义Cell实现团购UI
AJ分享,必须精品 先看效果图 自定义Cell 本次主要是自定义Cell的学习 实现自定义Cell主要有三种方法:按照使用的频繁度排序: XIB > 纯代码 > StoryBoard XI ...
- iOS开发——UI进阶篇(二)自定义等高cell,xib自定义等高的cell,Autolayout布局子控件,团购案例
一.纯代码自定义等高cell 首先创建一个继承UITableViewCell的类@interface XMGTgCell : UITableViewCell在该类中依次做一下操作1.添加子控件 - ( ...
- IOS第八天(2:UITableViewController团购,点击底部,xib加载更多, 代理模式)
******* HMViewController.h #import "HMViewController.h" #import "HMTg.h" #import ...
- iOS开发UI篇—使用xib自定义UItableviewcell实现一个简单的团购应用界面布局
iOS开发UI篇—使用xib自定义UItableviewcell实现一个简单的团购应用界面布局 一.项目文件结构和plist文件 二.实现效果 三.代码示例 1.没有使用配套的类,而是直接使用xib文 ...
- [iOS基础控件 - 6.6.1] 展示团购数据代码
1.主控制器: // // ViewController.m // GroupPurchase // // Created by hellovoidworld on 14/12/3. // Cop ...
- [iOS基础控件 - 6.6] 展示团购数据 自定义TableViewCell
A.需求 1.头部广告 2.自定义cell:含有图片.名称.购买数量.价格 3.使用xib设计自定义cell,自定义cell继承自UITableViewCell 4.尾部“加载更多按钮”,以及其被点击 ...
- iOS UI基础-9.1 UITableView 团购
概述 接下来,我们要做的是团购界面的设计,最张要实现的效果图及项目结构图 团购数据的展示 思路: 系统自带的tableCell不能展示三个文本,不能满足条件,自定义tableCell 每一个 ...
- iOS开发:一个高仿美团的团购ipad客户端的设计和实现(功能:根据拼音进行检索并展示数据,离线缓存团购数据,浏览记录与收藏记录的批量删除等)
大致花了一个月时间,利用各种空闲时间,将这个客户端实现了,在这里主要是想记录下,设计的大体思路以及实现过程中遇到的坑...... 这个项目的github地址:https://github.com/wz ...
- swift项目-模仿团购(主界面的搭建,以及首页的一些细节)
以前学习oc的时候写的一个团购的项目,现在学习swift,拿来用swift写一遍,也是连猜带蒙的,一点一点的往上凑. 今天主要是把主要的架子搭起来了. 主要有:UITabBarController,U ...
随机推荐
- [ POI 2011 ] Dynamite
\(\\\) \(Description\) 一棵\(N\)个节点的树,树上有\(M\)个节点是关键点,选出\(K\)个特殊点,使得所有关键点到特殊点的距离中最大的最小,输出最大值最小为多少. \(N ...
- win32之bitmap篇
先讲一下LoadBitmap的用法,代码如下: PAINTSTRUCT ps; HDC hdc = BeginPaint(hwnd,&ps); HDC hMemDC = CreateCompa ...
- javascript之console篇
javascript中的console使用得当,将会事半功倍,对bug,性能等的跟踪,优化是个不错的利器! 1.基本日志消息打印: console.debug(msg); console.info() ...
- RTL Compiler之Example
Synthesis = Translation + Logic Optimization + Mapping Step 1 Source files 1) make directory mkdir ...
- for mxl path
废话不多说,直接上例子 简单明了 create table tb_class ( classId int , className ) ) go ,'一班') ,'二班') ,'三班') go crea ...
- Python 之12306网站验证码校验案例
import requests from PIL import Image import jsons requests.packages.urllib3.disable_warnings() head ...
- 阿里P8架构师详解Java性能调优策略
一.性能测试 Ⅰ.测试方法 微基准性能测试 可以精准定位到某个模块或者某个方法的性能问题,例如对比一个方法使用同步实现和非同步实现的性能差异 宏基准性能测试 宏基准性能测试是一个综合测试,需要考虑到测 ...
- java关于工作,跳槽之总结
关于工作中: 如何展示自己项目中的亮点,技术或者难点: 总结我的经历和技术倒是可以,但是我做的项目和我会的技术都很平庸,实在找不到亮点怎么办? 如果知道了你没有亮点,也就是知道了你自己欠缺什么,那么下 ...
- Python 内置函数 day4
import random s = 'abczfg' st= {3,4,9,1,8} print(dir(random))#打印模块内的方法,输出模块/变量可以调用的方法 print(dir(s))# ...
- discourse论坛迁移
在源设备的操作备份数据文件tar -czvf discoursefile716.tar.gz /var/discourse然后把此discoursefile716.tar.gz文件传到需要迁移的设备上 ...