博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【iOS】在Swift中使用JSONModel
阅读量:6137 次
发布时间:2019-06-21

本文共 3097 字,大约阅读时间需要 10 分钟。

前言

首先所有的Model还是使用oc来写——看到这一句是不是想关网页了- - #,在swift里面直接写一直报错所以就将就用oc来写了,这里主要是分享一下搭配Alamofire使用的经验。

声明
欢迎转载,但请保留文章原始出处:) 
博客园:http://www.cnblogs.com
农民伯伯: http://over140.cnblogs.com

正文

这里不讨论JSONModel和Alamofire这两个项目,直接上代码

BaseModel.h

#import 
"
JSONModel.h
"
@interface BaseModel : JSONModel
-(instancetype)initWithDictionary:(NSDictionary*)dict;
@end

 

BaseModel.m 

#import 
"
BaseModel.h
"
@implementation BaseModel
//
Make all model properties optional (avoid if possible)
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    
return YES;
}
-(instancetype)initWithDictionary:(NSDictionary*)dict {
    
return (self = [[super init] initWithDictionary:dict error:nil]);
}
@end

所有的Model都要继承BaseModel,其他写法都一样

 

BaseAPI.swift

    
internal func requestModel<T: BaseModel>(method: Method, _ URLString: URLStringConvertible, parameters: [String: AnyObject]? = nil, success: (T) -> Void, failure: (NSError?) -> Void) {
        mHttpManager.request(method, URLString , parameters: parameters, encoding: ParameterEncoding.JSON)
            .responseJSON { (request, response, data, error) 
in
                
if error == nil {
                    
if let dict = data 
as? NSDictionary {
                        
if let model = T(dictionary: dict 
as [NSObject : AnyObject]) {
                            success(model)
                            
return
                        }
                    }
                }
                failure(error)
        }
    }
    
    
internal func requestArray<T: BaseModel>(method: Method, _ URLString: URLStringConvertible, parameters: [String: AnyObject]? = nil, success: (Array<T>) -> Void, failure: (NSError?) -> Void) {
        mHttpManager.request(method, URLString , parameters: parameters, encoding: ParameterEncoding.JSON)
            .responseJSON { (request, response, data, error) 
in
                
if error == nil {
                    
if let array = data 
as? NSArray {
                        
if let result = T.arrayOfModelsFromDictionaries(array 
as [AnyObject]).copy() 
as? Array<T>{
                            success(result)
                            
return
                        }
                    }
                }
                failure(error)
        }
    }

  代码说明

1、mHttpManager这个是Alamofire的Manager对象

2、注意服务端的返回的数据格式,这里支持Model和Array<Model>

3、注意在Swift里面NSDictionary转Model,用T(dictionary: dict as [NSObject : AnyObject]),这个T就是具体的泛型类型

4、注意在Swift里面NSArray转Model数组,用T.arrayOfModelsFromDictionaries(array as [AnyObject]).copy() as? Array<T>,注意不要用BaseModel. arrayOfModelsFromDictionaries(编译不会报错但是类型转不出来)

5、具体用法:

            
public func casts(success: (Array<CustomModel>) -> Void, failure: (NSError?) -> Void) {
                requestArray(Method.GET, URL_CASTS, parameters: nil, success: success, failure: failure)
            }
            
            
public func like(id: String, success: (CustomModel) -> Void, failure: (NSError?) -> Void) {
                requestModel(Method.PATCH, String(format: URL_CASTS_LIKE, id), parameters: nil, success: success, failure: failure)
            }

非常轻松和简单, 可以少写很多重复代码。

 

后期维护

2015-05-20 Alamofire兼容iOS7有点问题,设置head不管用,请参考我另外一篇文章:

 

2016-04-21 

错误:fatal error: NSArray element failed to match the Swift Array Element type,参考帖子

Swift 中使用不支持嵌套 JSONModel 数组

@property (strong, nonatomic) NSArray<App *> *apps;
@property (strong, nonatomic) NSArray<User *> *users;

解决办法: 

@property (strong, nonatomic) NSArray<NSDictionary *> *apps;
@property (strong, nonatomic) NSArray<NSDictionary *> *users;

     然后在 Swift 这边转一下

                   self.users = users.map{ User(dictionary: $
0 ) }
                   self.apps = apps.map{ App(dictionary: $
0 ) }

 

结束

以后还会分享更多swift的经验,欢迎交流! 

转载于:https://www.cnblogs.com/over140/p/4500769.html

你可能感兴趣的文章
Windows DHCP Server基于MAC地址过滤客户端请求实现IP地址的分配
查看>>
命令查询每个文件文件数
查看>>
《跟阿铭学Linux》第8章 文档的压缩与打包:课后习题与答案
查看>>
RAC表决磁盘管理和维护
查看>>
HDU 3622 Bomb Game(二分+2-SAT)
查看>>
Apache通过mod_php5支持PHP
查看>>
发布一个TCP 吞吐性能测试小工具
查看>>
java学习:jdbc连接示例
查看>>
PHP执行批量mysql语句
查看>>
Extjs4.1.x 框架搭建 采用Application动态按需加载MVC各模块
查看>>
Silverlight 如何手动打包xap
查看>>
建筑电气暖通给排水协作流程
查看>>
JavaScript面向对象编程深入分析(2)
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>
使用native 查询时,对特殊字符的处理。
查看>>
maclean liu的oracle学习经历--长篇连载
查看>>
ECSHOP调用指定分类的文章列表
查看>>