swift 4.0时代的到来,说明了swift已经趋于稳定了,已经完全可以入坑了.
下面就拿最简单的数据转模型来说说,实战一下.
接口使用: http://116.211.167.106/api/live/aggregation?uid=133825214&interest=1
分别演示下: 1.SwiftyJSON 2.HandyJSON 3.ObjectMapper 4.swift4.0 Codable
说明:对上面几种方案使用过后1.SwiftyJSON直接对返回数据进行操作,不包含模型转换.个人不太喜欢
2.HandyJSON阿里封装的数据转模型,朋友说这个*有点方
3.ObjectMapper朋友推荐使用这个
4.swift4.0 Codable,个人也不太喜欢
1.SwiftyJSON
C层:
//
// TabOneVC.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/19.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// SwiftyJSON -- https://github.com/SwiftyJSON/SwiftyJSON import UIKit
import Alamofire
import SwiftyJSON
private let oneCellIdentifier = "oneCellIdentifier" class TabOneVC: UIViewController { lazy var oneTableView:UITableView = {
let tabView = UITableView.init(frame: UIScreen.main.bounds)
tabView.delegate = self
tabView.dataSource = self
tabView.rowHeight = 220.0
tabView.register(OneCell.self, forCellReuseIdentifier: oneCellIdentifier)
view.addSubview(tabView)
return tabView }() var ary:[JSON]! = [] override func viewDidLoad() {
super.viewDidLoad() Alamofire.request("http://116.211.167.106/api/live/aggregation?uid=133825214&interest=1").responseJSON { (response) in
let data = response.result.value
let j = JSON.init(data!)
self.ary = j["lives"].array
self.oneTableView.reloadData()
}
} override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
} }
extension TabOneVC: UITableViewDelegate,UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return ary.count;
} func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: oneCellIdentifier, for: indexPath) as! OneCell
cell.jsonObj = ary[indexPath.row] return cell; } }
SwiftyJSON
cell:
//
// OneCell.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/19.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit
import SwiftyJSON
import SDWebImage
class OneCell: UITableViewCell {
var jsonObj:JSON?{
didSet{
nameLabel.text = String(describing: jsonObj!["creator"]["nick"]) + "-" + String(describing: jsonObj!["city"])
let str:String = String(describing: jsonObj!["creator"]["portrait"])
picImgView.sd_setImage(with: URL.init(string: str), completed: nil)
}
} lazy var nameLabel:UILabel = {
let la = UILabel.init()
return la;
}() lazy var picImgView:UIImageView = {
let imgView = UIImageView.init()
return imgView;
}() override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
setupUI()
addCons()
} func setupUI(){
contentView.addSubview(nameLabel)
contentView.addSubview(picImgView) } func addCons(){
nameLabel.snp.makeConstraints { (make) in
make.leftMargin.equalTo(contentView.snp.left).offset(10)
make.rightMargin.equalTo(contentView.snp.right).offset(-10)
make.topMargin.equalTo(contentView.snp.top).offset(10)
make.height.equalTo(50)
}
picImgView.snp.makeConstraints { (make) in
make.leftMargin.equalTo(contentView.snp.left).offset(10)
make.topMargin.equalTo(nameLabel.snp.bottom).offset(20)
make.height.width.equalTo(120)
} } required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
} }
SwiftyJSON
2.HandyJSON
C层:
//
// TabTwoVC.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/19.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// HandyJSON -- https://github.com/alibaba/HandyJSON import UIKit
import Alamofire
import HandyJSON private let twoCellIdentifier = "twoCellIdentifier"
class TabTwoVC: UIViewController { lazy var twoTableView:UITableView = {
let tabView = UITableView.init(frame: UIScreen.main.bounds)
tabView.delegate = self
tabView.dataSource = self
tabView.rowHeight = 220.0
tabView.register(TwoCell.self, forCellReuseIdentifier: twoCellIdentifier)
view.addSubview(tabView) return tabView
}() var ary:[Dictionary<String, Any>] = [] override func viewDidLoad() {
super.viewDidLoad() Alamofire.request("http://116.211.167.106/api/live/aggregation?uid=133825214&interest=1").responseJSON { (response) in
let data:Dictionary<String,Any> = response.result.value as! Dictionary
self.ary = data["lives"] as! [Dictionary<String, Any>]
self.twoTableView.reloadData()
} } override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
} } extension TabTwoVC: UITableViewDelegate,UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return ary.count;
} func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: twoCellIdentifier, for: indexPath) as! TwoCell
cell.model = JSONDeserializer.deserializeFrom(dict: ary[indexPath.row])
return cell; } }
HandyJSON
cell:
//
// TwoCell.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/19.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit
import SnapKit
import SDWebImage
class TwoCell: UITableViewCell { var model:TwoModel!{
didSet{
nameLabel.text = model.creator.nick + "-" + model.city
let str = model.creator.portrait
picImgView.sd_setImage(with: URL.init(string: str!), completed: nil) }
} lazy var nameLabel:UILabel = {
let la = UILabel.init()
return la;
}() lazy var picImgView:UIImageView = {
let imgView = UIImageView.init()
return imgView;
}() override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
setupUI()
addCons()
} func setupUI(){
contentView.addSubview(nameLabel)
contentView.addSubview(picImgView) } func addCons(){
nameLabel.snp.makeConstraints { (make) in
make.leftMargin.equalTo(contentView.snp.left).offset(10)
make.rightMargin.equalTo(contentView.snp.right).offset(-10)
make.topMargin.equalTo(contentView.snp.top).offset(10)
make.height.equalTo(50)
}
picImgView.snp.makeConstraints { (make) in
make.rightMargin.equalTo(contentView.snp.right).offset(-10)
make.topMargin.equalTo(nameLabel.snp.bottom).offset(20)
make.height.width.equalTo(120)
} } required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
HandyJSON
model:
//
// Model.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/19.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit
import HandyJSON
struct TwoModel: HandyJSON {
var city:String!
var creator:TwoCreatorModel!
} struct TwoCreatorModel: HandyJSON {
var nick:String!
var portrait:String!
}
HandyJSON
3.ObjectMapper
C层:
//
// TabThreeVC.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/20.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// ObjectMapper -- https://github.com/Hearst-DD/ObjectMapper import UIKit
import Alamofire
import ObjectMapper
private let threeCellIdentifier = "threeCellIdentifier" class TabThreeVC: UIViewController { lazy var threeTableView:UITableView = {
let tabView = UITableView.init(frame: UIScreen.main.bounds)
tabView.delegate = self
tabView.dataSource = self
tabView.rowHeight = 220.0
tabView.register(ThreeCell.self, forCellReuseIdentifier: threeCellIdentifier)
return tabView
}()
var ary:[Dictionary<String, Any>] = [] override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(threeTableView)
Alamofire.request("http://116.211.167.106/api/live/aggregation?uid=133825214&interest=1").responseJSON { (response) in
let data:Dictionary<String,Any> = response.result.value as! Dictionary
self.ary = data["lives"] as! [Dictionary<String, Any>]
self.threeTableView.reloadData()
} } override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
} } extension TabThreeVC: UITableViewDelegate,UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return ary.count;
} func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: threeCellIdentifier, for: indexPath) as! ThreeCell
cell.model = Mapper<ThreeModel>().map(JSON: ary[indexPath.row])
return cell; } }
ObjectMapper
cell:
//
// ThreeCell.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/20.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit
import SnapKit
import SDWebImage class ThreeCell: UITableViewCell { var model:ThreeModel!{
didSet{
nameLabel.text = model.creator!.nick! + model.city!
let str = model.creator!.portrait
picImgView.sd_setImage(with: URL.init(string: str!), completed: nil) }
} lazy var nameLabel:UILabel = {
let la = UILabel.init()
la.textAlignment = .center
return la;
}() lazy var picImgView:UIImageView = {
let imgView = UIImageView.init()
return imgView;
}() override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
setupUI()
addCons()
} func setupUI(){
contentView.addSubview(nameLabel)
contentView.addSubview(picImgView) } func addCons(){
nameLabel.snp.makeConstraints { (make) in
make.leftMargin.equalTo(contentView.snp.left).offset(10)
make.rightMargin.equalTo(contentView.snp.right).offset(-10)
make.topMargin.equalTo(contentView.snp.top).offset(10)
make.height.equalTo(50)
}
picImgView.snp.makeConstraints { (make) in
make.center.equalTo(contentView.snp.center)
make.height.width.equalTo(120)
} } required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
} }
ObjectMapper
model:
//
// ThreeModel.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/20.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit
import ObjectMapper struct ThreeModel: Mappable {
var city:String!
var creator:ThreeCreatorModel! mutating func mapping(map: Map) {
city <- map["city"]
creator <- map["creator"]
} init?(map: Map) { } } struct ThreeCreatorModel: Mappable {
var nick:String!
var portrait:String! mutating func mapping(map: Map) {
nick <- map["nick"]
portrait <- map["portrait"]
} init?(map: Map) { } }
ObjectMapper
4.swift4.0 Codable
C层:
//
// TabFourVC.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/20.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// 自家孩子 swift4.0 Codable import UIKit
import Alamofire private let fourCellIdentifier = "fourCellIdentifier" class TabFourVC: UIViewController { lazy var fourTableView:UITableView = {
let tabView = UITableView.init(frame: UIScreen.main.bounds)
tabView.delegate = self
tabView.dataSource = self
tabView.rowHeight = 220.0
tabView.register(FourCell.self, forCellReuseIdentifier: fourCellIdentifier)
view.addSubview(tabView)
return tabView
}()
var model:FourModel! override func viewDidLoad() {
super.viewDidLoad()
Alamofire.request("http://116.211.167.106/api/live/aggregation?uid=133825214&interest=1").responseData { (data) in
self.model = try! JSONDecoder().decode(FourModel.self, from: data.result.value!)
self.fourTableView.reloadData()
}
} override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
} } extension TabFourVC: UITableViewDelegate,UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return model.lives.count;
} func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: fourCellIdentifier, for: indexPath) as! FourCell
cell.model = model.lives[indexPath.row]
return cell;
} }
Codable
cell:
//
// FourCell.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/20.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit
import SnapKit
import SDWebImage class FourCell: UITableViewCell { var model:FourLivesModel!{
didSet{
nameLabel.text = model.city + model.creator.nick
let str = model.creator.portrait
picImgView.sd_setImage(with: URL.init(string: str), completed: nil)
}
} lazy var nameLabel:UILabel = {
let la = UILabel.init()
la.textAlignment = .center
la.backgroundColor = UIColor.red
return la;
}() lazy var picImgView:UIImageView = {
let imgView = UIImageView.init()
return imgView;
}() override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
setupUI()
addCons()
} func setupUI(){
contentView.addSubview(nameLabel)
contentView.addSubview(picImgView) } func addCons(){
picImgView.snp.makeConstraints { (make) in
make.center.equalTo(contentView.snp.center)
make.height.width.equalTo(120)
}
nameLabel.snp.makeConstraints { (make) in
make.leftMargin.equalTo(contentView.snp.left).offset(10)
make.rightMargin.equalTo(contentView.snp.right).offset(-10)
make.topMargin.equalTo(picImgView.snp.bottom).offset(10)
make.height.equalTo(50)
} } required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
} }
Codable
model:
//
// FourModel.swift
// myDemo
//
// Created by Shaoting Zhou on 2017/12/20.
// Copyright © 2017年 Shaoting Zhou. All rights reserved.
// import UIKit struct FourModel: Codable {
var error_msg:String
var lives:[FourLivesModel] } struct FourLivesModel: Codable {
var city:String
var creator:FourCreatorModel
} struct FourCreatorModel: Codable {
var nick:String
var portrait:String
}
Codable
基本的效果都长这样:
GitHub地址: https://github.com/pheromone/swift_study
swift4.0 数据转模型的更多相关文章
-
Thinkphp5.0 的使用模型Model删除数据
Thinkphp5.0 的使用模型Model删除数据 一.使用destory()删除数据 //删除id为3的记录 $res = User::destroy(3); //返回影响的行数 dump($re ...
-
Thinkphp5.0 的使用模型Model更新数据
Thinkphp5.0 的使用模型Model更新数据 (1)使用update()方法进行更新数据 一.where条件写在更新数据中 (这种情况更新的数据,必须含主键) $res = User::upd ...
-
Thinkphp5.0 的使用模型Model添加数据
Thinkphp5.0 的使用模型Model添加数据 使用create()方法添加数据 $res = TestUser::create([ 'name' => 'zhao liu', 'pass ...
-
R_针对churn数据用id3、cart、C4.5和C5.0创建决策树模型进行判断哪种模型更合适
data(churn)导入自带的训练集churnTrain和测试集churnTest 用id3.cart.C4.5和C5.0创建决策树模型,并用交叉矩阵评估模型,针对churn数据,哪种模型更合适 决 ...
-
pytorch入门2.0构建回归模型初体验(数据生成)
pytorch入门2.x构建回归模型系列: pytorch入门2.0构建回归模型初体验(数据生成) pytorch入门2.1构建回归模型初体验(模型构建) pytorch入门2.2构建回归模型初体验( ...
-
ThinkPHP 学习笔记 ( 三 ) 数据库操作之数据表模型和基础模型 ( Model )
//TP 恶补ing... 一.定义数据表模型 1.模型映射 要测试数据库是否正常连接,最直接的办法就是在当前控制器中实例化数据表,然后使用 dump 函数输出,查看数据库的链接状态.代码: publ ...
-
kafka 日常使用和数据副本模型的理解
kafka 日常使用和数据副本模型的理解 在使用Kafka过程中,有时经常需要查看一些消费者的情况.Kafka健康状况.临时查看.同步一些数据,又由于Kafka只是用来做流式存储,又没有像Mysql或 ...
-
胖子哥的大数据之路(9)-数据仓库金融行业数据逻辑模型FS-LDM
引言: 大数据不是海市蜃楼,万丈高楼平地起只是意淫,大数据发展还要从点滴做起,基于大数据构建*.行业级数据中心的项目会越来越多,大数据只是技术,而非解决方案,同样面临数据组织模式,数据逻辑模式的问 ...
-
ThinkPHP 数据库操作之数据表模型和基础模型 ( Model )
一.定义数据表模型 1.模型映射 要测试数据库是否正常连接,最直接的办法就是在当前控制器中实例化数据表,然后使用 dump 函数输出,查看数据库的链接状态.代码: public function te ...
随机推荐
-
CSS3幻灯片制作心得
大神勿喷,这是小弟自己学习的痕迹. CSS3动画效果核心代码 @keyframes slideLeft { 0% { left: -500px; } 100% { ; } } @keyframes s ...
-
w_all_checked - js -checkbox 多选、全选、submit、request
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> ...
-
python异常以及面向对象编程
一.面向对象 需要注意的是,在Python中,变量名类似__xxx__的,也就是以双下划线开头,并且以双下划线结尾的,是特殊变量,特殊变量是可以直接访问的,不是private变量,所以,不能用__na ...
-
统计机器学习(statistical machine learning)
组要组成部分:监督学习(supervised learning),非监督学习(unsupervised learning),半监督学习(semi-supervised learning),强化学习(r ...
-
HTML与CSS入门——第八章 使用外部和内部链接
知识点: 1.链接锚的使用方法 2.在自己的网站上的页面之间链接的方法 3.链接到外部内容的方法 4.链接到一个E-mail地址的方法 5.在新浏览器窗口中查看链接的方法 6.用CSS为链接添加样式的 ...
-
h5仿微信聊天(高仿版)、微信聊天表情|对话框|编辑器
之前做过一版h5微信聊天移动端,这段时间闲来无事就整理了下之前项目,又重新在原先的那版基础上升级了下,如是就有了现在的h5仿微信聊天高仿版,新增了微聊.通讯录.探索.我四个模块 左右触摸滑屏切换,聊天 ...
-
关于JBoss -“Closing a connection for you,please close them yourself”
使用JNDI的方式从Jboss里获取数据连接(Connection)的方式,Jboss会管理connection,不需要自己手动去关闭,但Jboss老是提示需要自己来关闭connection,针对Jb ...
-
架构师成长之路6.3 DNS服务器搭建(部署单台DNS)
点击返回架构师成长之路 架构师成长之路6.3 DNS服务器搭建(部署单台DNS) 1.安装bind yum -y install bind-utils bind bind-devel bind-chr ...
-
C++进阶--静态初始化的惨败
/* Initialization Fiasco 一个会使程序崩溃的细微的问题 */ // 不同文件的编译顺序是不确定的 // 如果一个文件依赖另一个文件的对象先初始化,可能出现问题 // 解决方法: ...
-
php email
项目中用到了发邮件的功能.代码很简单,但是其中碰到了一些奇怪的问题. smtp error: could not authenticate 163 ======================== 新 ...