博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
swift -- 单例+ lazy懒加载 + 第三方库
阅读量:6875 次
发布时间:2019-06-26

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

//工具类单例

    static let goods : NHGoods = {

        let good = NHGoods()

        

        return good

    }()

//懒加载

lazy var registerBtn: UIButton = { 

        var btn = UIButton.init(frame: CGRect(x: 100, y:350 , width: 200, height: 40));

       btn.backgroundColor = UIColor.orange

        btn.setTitle("注册", for: .normal)

        btn.setBackgroundImage(UIImage.init(named: "loginBtnBg"), for: .normal)

        return btn

    }()

 

 

//***** swift  第三方库*****//

 http://blog.csdn.net/timtian008/article/details/53520896

#解决键盘弹起遮挡工具

pod 'IQKeyboardManagerSwift', '~>4.0.6'

#多种类型弹出框

pod 'SCLAlertView', :git => 'https://github.com/vikmeup/SCLAlertView-Swift'

# Alamofire 网络库 (4.1.0最低支持iOS8.0,4.0最低支持iOS9.0)

pod 'Alamofire', '~> 4.0'

# swift解析json库

pod 'SwiftyJSON', :git => 'https://github.com/IBM-Swift/SwiftyJSON.git' #AutoLayout 库 pod "SnapKit"

#网络图片库

pod "Kingfisher" # swift编写的各种加密算法,如:MD5,SHA1 pod 'CryptoSwift', :git => 'https://github.com/krzyzanowskim/CryptoSwift.git', :branch => 'swift3'

# 网络加载图片预处理工具

pod 'AlamofireImage', '~> 3.0' # swift RSA加密 pod 'SwiftyRSA', :git => 'https://github.com/TakeScoop/SwiftyRSA.git', :branch => 'swift-3.0'

# 二维码扫描解码及生成二维码

pod 'SwiftQRCode', :git => 'https://github.com/zhiquan911/SwiftQRCode.git', :branch => 'master'

# 苹果底层保存密码keychain工具,https://github.com/marketplacer/keychain-swift

pod 'KeychainSwift', '~> 6.0'

# websocket库

pod 'Starscream', :git => 'https://github.com/daltoniam/Starscream.git', :branch => 'swift3'

# 日志输出管理

pod 'Log', '~> 1.0'

# Swfit项目语言本地化支持框架: https://github.com/marmelroy/Localize-Swift

pod 'Localize-Swift', '~> 1.5'

#字体图片库

pod 'FontAwesomeKit.Swift'

#简单快速灵活的集成类似网易新闻, 头条等带滑块的滚动视图,实现视图联动, 滑块,https://github.com/jasnig/ScrollPageView

pod 'ScrollPageView', '~> 0.1.4'

 

转载于:https://www.cnblogs.com/daxueshan/p/5588485.html

你可能感兴趣的文章
又想起Solaris
查看>>
我与前端的二三事
查看>>
Django REST framework+Vue 打造生鲜电商项目(笔记三)
查看>>
51nod加农炮
查看>>
HTML5 学习笔记一(语义化标签、表单)
查看>>
旅游出境登机入住饭店英语
查看>>
Springboot整合mybatis
查看>>
Java面试题集(1-50)
查看>>
Android 常用工具类之 DimenUtil
查看>>
[Noi2016]国王饮水记
查看>>
【AndroidFramework】ATV9遥控器红外模式下,机顶盒在假待机阶段会响应遥控器语音键...
查看>>
学习笔记之Machine Learning Crash Course | Google Developers
查看>>
11-12 元素的属性
查看>>
习题一句话题解(COJ)
查看>>
第二十天笔记
查看>>
【Gamma】测试报告
查看>>
Stanford Log-linear Part-Of-Speech Tagger标记含义
查看>>
mysql 5.7配置项最详细的解释
查看>>
Oracle - 数据库的实例、表空间、用户、表之间关系
查看>>
Ubuntu14.04上修改主机名
查看>>