摘要:
/** * swift3.0 单例样式 * 使用方法:let mark = SingelClass.shared */ class SingelClass: NSObject { static let shared = SingelClass() // 重载并私有 private override init() { // 初始化一些内容 ... 阅读全文
摘要:
// // XCache.swift // UITablViewTest // // Created by Marcio on 2017/2/14. // Copyright © 2017年 Marcio. All rights reserved. // import UIKit class XCache: NSObject { /** * 读取缓存大小 ... 阅读全文
摘要:
// // XGIFView.swift // UITablViewTest // // Created by Marico on 2017/2/14. // Copyright © 2017年 Marico. All rights reserved. // import UIKit import ImageIO import QuartzCore /** * MD5字符转换需要一... 阅读全文