IOS开发学习笔记030-xib实现淘宝界面
使用xib文件实现界面,然后通过模型更新数据。
1、使得控制器继承自UITableViewController
2、创建xib文件,实现界面如下:一个UIImageView,两个lable
3、新建一个封装类NewCell,封装对xib界面的操作
4、新建一个模型类Shops对数据进行更新,读取字典数据到类中
5、在控制器中对模型数据进行操作,将结果显示到view中
1、使得控制器继承自UITableViewController
更改main.storyboard的主界面是UITableViewController的class为SLQViewController
2、创建xib文件,实现界面如下:一个UIImageView,两个lable
指定NewCell的class为下面新建的NewCell类,这样可以拖线添加属性和方法。
3、新建一个封装类NewCell,封装对xib界面的操作
头文件
//
// NewCell.h
// UITableViewCell-xib实现
//
// Created by Christian on 15/5/21.
// Copyright (c) 2015年 slq. All rights reserved.
// #import <UIKit/UIKit.h>
@class Shops; // 引用声明
@interface NewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *icon; // 图标
@property (weak, nonatomic) IBOutlet UILabel *name; // 标题
@property (weak, nonatomic) IBOutlet UILabel *desc; // 描述 @property (nonatomic,strong) Shops *shop; // shop对象 + (id)newCell; // 返回NewCell对象
+ (NSString *)ID; // 返回标识
+ (CGFloat)cellHeight; // 返回cell高度
@end
源文件
//
// NewCell.m
// UITableViewCell-xib实现
//
// Created by Christian on 15/5/21.
// Copyright (c) 2015年 slq. All rights reserved.
// #import "NewCell.h"
#import "Shops.h" @implementation NewCell - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
} - (void)awakeFromNib
{
// Initialization code
} - (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated]; // Configure the view for the selected state
}
// 返回NewCell对象
+ (id)newCell
{
// 加载xib文件
return [[NSBundle mainBundle] loadNibNamed:@"NewCell" owner:nil options:nil][];
}
// 重写setShop方法
- (void)setShop:(Shops *)shop
{
// 标题
self.name.text = shop.name;
// 图片
self.icon.image = [UIImage imageNamed:shop.icon];
// 描述
self.desc.text = shop.desc;
}
// 返回标识
+ (NSString *)ID
{
return @"CELL";
}
// 返回行高度
+ (CGFloat)cellHeight
{
return ;
}
@end
4、新建一个模型类Shops对数据进行更新,读取字典数据到类中
//
// Shops.h
// UITableViewCell-xib实现
//
// Created by Christian on 15/5/21.
// Copyright (c) 2015年 slq. All rights reserved.
// #import <Foundation/Foundation.h> @interface Shops : NSObject
@property (nonatomic,copy) NSString *name; // 标题
@property (nonatomic,copy) NSString *desc; // 描述
@property (nonatomic,copy) NSString *icon; // 图标 + (id)shopWithDict:(NSDictionary *)dict; // 返回shop对象
- (id)initWithDict:(NSDictionary *)dict; // 自定义构造方法 @end
实现文件如下:
//
// Shops.m
// UITableViewCell-xib实现
//
// Created by Christian on 15/5/21.
// Copyright (c) 2015年 slq. All rights reserved.
// #import "Shops.h" @implementation Shops // 返回一个Shop对象
- (id)initWithDict:(NSDictionary *)dict
{
// 父类init
if(self = [self init])
{
// 赋值
self.name = dict[@"name"];
self.icon = dict[@"icon"];
self.desc = dict[@"desc"];
}
// 返回self
return self;
} + (id)shopWithDict:(NSDictionary *)dict
{
return [[Shops alloc] initWithDict:dict];
}
@end
5、在控制器中对模型数据进行操作,将结果显示到view中
主要是这两个方法:设置行和行内容
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _data.count;
} - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1、取出循环池中得cell
NewCell *cell = [tableView dequeueReusableCellWithIdentifier:[NewCell ID]];
// 2、如果cell不空
if(cell == nil)
{
cell = [NewCell newCell];
}
// 3、设置cell内容
cell.shop = _data[indexPath.row];
return cell;
}
还有plist文件的加载
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
_data = [NSMutableArray array];
//加载数据
NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"shops.plist" ofType:nil]];
for (NSDictionary *arr in array)
{
[_data addObject:[Shops shopWithDict:arr]];
}
// 设置行高度
self.tableView.rowHeight = [NewCell cellHeight];
}
源代码:http://pan.baidu.com/s/1kTswBjD
欢迎关注个人订阅号:
IOS开发学习笔记030-xib实现淘宝界面的更多相关文章
- iOS开发学习笔记:基础篇
iOS开发需要一台Mac电脑.Xcode以及iOS SDK.因为苹果设备都具有自己封闭的环境,所以iOS程序的开发必须在Mac设备上完成(当然,黑苹果应该也是可以的,但就需要花很多的精力去折腾基础环境 ...
- ios开发学习笔记(1)
objective-c基础总结 第一二章 1.application:didiFinishLauchingWithOptions:程序启动后立即执行 2.启动界面代码格式:self.window = ...
- IOS开发学习笔记042-UITableView总结2
一.自定义非等高的cell 如常见的微博界面,有的微博只有文字,有的有文字和图片.这些微博的高度不固定需要重新计算. 这里简单说一下几种方法.前面的步骤和设置等高的cell一样.现在来 ...
- IOS开发学习笔记029-反选、全选、删除按钮的实现
还是在上一个程序的基础上进行修改 1.反选按钮 2.全选按钮 3.删除按钮 4.其他代码优化 1.反选按钮 反选的过程就是将_deleteShops数组中得数据清空,然后将Shops中数组添加到_de ...
- ios开发学习笔记(这里一定有你想要的东西,全部免费)
1,Search Bar 怎样去掉背景的颜色(storyboard里只能设置background颜色,可是发现clear Color无法使用). 其实在代码里还是可以设置的,那就是删除背景view [ ...
- iOS开发学习笔记
1 常用的第三方工具 1.1 iPhone Simulator 测试程序需要模拟器iPhone Simulator 1.2 设计界面需要Interface Builder,Interface Buil ...
- (ios开发学习笔记一)ios项目文件结构
转自:http://www.cnblogs.com/macroxu-1982/archive/2012/07/31/2616389.html 下面是单个窗体项目例子,我们从这个项目开始,说明ios项目 ...
- IOS开发学习笔记017-第一个IOS应用
第一个IOS应用程序,就从最简单的开始吧. 1.先了解一下开发环境,Xcode的相关组成 2.还有模拟器 3.运行与停止按钮 4.新建一个工程 5.看看main函数里都有啥 6.现在来添加一个控件 1 ...
- IOS开发学习笔记041-UITableView总结1
一.UITableView的常用属性 1.分割线 // 分割线 self.tableView.separatorColor = [UIColorredColor]; // 隐藏分割线 self.tab ...
随机推荐
- 关于在C++中调用system函数
先看看下面的这一段程序: #include <iostream> #include <cstdlib> int main(int argc, char* argv[]) { s ...
- Swagger的使用
参考文章: https://blog.csdn.net/xupeng874395012/article/details/68946676/ https://blog.csdn.net/hry2015 ...
- C#基础知识图谱
- Mac 颜色取值
command+shift+4 截图,我靠,我以前不知道 系统自带数码测色计, 选择显示十六位制 command+L 锁定 command+shift+c 复制 简直太方便
- Python __builtin__模块
你有没有好奇过当我们打开Python后就可以直接使用str(),list(),eval(),print(),max()这样的函数,而不用导入任何模块? 其实原因很简单,就是当我们打开Python解释器 ...
- 手机端@media screen布局自适应
@media only screen and (min-width: 310px) and (max-width: 360px) { }@media only screen and (min-widt ...
- FPGA工具篇——编辑器Notepad++
body { font-family: 微软雅黑,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-serif,宋体, PMingLi ...
- mongodb 入坑
一.安装mongodb https://www.mongodb.com/ 官网下载合适的版本,安装在C或者D盘,我选择的是默认路径C:\Program Files\MongoDB\Server\3.4 ...
- 2018.5.24 Oracle下的sqlplus编程 块结构
1.语句结构模板 declare --声明 begin dbms_output.put_line('Legend Hello world'); end; 2.变量使用 & 是输入符号 decl ...
- python脚本执行报错:SyntaxError: Non-ASCII character '\xe6' in file ip.py on line 4...
报错信息 [root@chenbj ~]# python ip.py 192.168.1.1 File "ip.py", line 4 SyntaxError: Non-ASCII ...