Commit 2571728d authored by David黄金龙's avatar David黄金龙

添加 第三方库

parent 8ea2f362
...@@ -14,8 +14,9 @@ target 'galaxy' do ...@@ -14,8 +14,9 @@ target 'galaxy' do
#图片加载 #图片加载
pod 'Kingfisher','7.10.1' pod 'Kingfisher','7.10.1'
#异步编程框架 #异步编程框架
pod 'RxSwift','6.6.0' # pod 'RxSwift','6.6.0'
pod 'RxCocoa','6.6.0' # pod 'RxCocoa','6.6.0'
pod 'RxAlamofire','6.1.1'
#数据存储 #数据存储
pod 'SwiftyUserDefaults','5.3.0' pod 'SwiftyUserDefaults','5.3.0'
#数据加、解密 #数据加、解密
......
...@@ -21,7 +21,7 @@ class YHNavigationController: UINavigationController { ...@@ -21,7 +21,7 @@ class YHNavigationController: UINavigationController {
override func pushViewController(_ viewController: UIViewController, animated: Bool) { override func pushViewController(_ viewController: UIViewController, animated: Bool) {
// 隐藏要push的控制器的tabbar // 隐藏要push的控制器的tabbar
if animated == true { if viewControllers.count > 0 {
viewController.hidesBottomBarWhenPushed = true viewController.hidesBottomBarWhenPushed = true
} }
super.pushViewController(viewController, animated: animated) super.pushViewController(viewController, animated: animated)
......
...@@ -85,6 +85,5 @@ class YHIntelligentServiceViewController: YHBaseViewController { ...@@ -85,6 +85,5 @@ class YHIntelligentServiceViewController: YHBaseViewController {
//5. dic 转 model //5. dic 转 model
guard let model1 = NetBaseModel.deserialize(dict: dic) else { return } guard let model1 = NetBaseModel.deserialize(dict: dic) else { return }
print("model1 是 ==>",model1) print("model1 是 ==>",model1)
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment