Commit 664b963c authored by David黄金龙's avatar David黄金龙

删除 不使用的代码

parent ace427d9
...@@ -35,21 +35,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { ...@@ -35,21 +35,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
//4.本地用户信息加载 //4.本地用户信息加载
YHLoginManager.shared.loadLocalUserInfoData() YHLoginManager.shared.loadLocalUserInfoData()
YHConfigManager.shared.loadConfigData() YHConfigManager.shared.loadConfigData()
// YHAnalytics.analyticsStart(launchOptions: launchOptions)
// var i = 0
// for family: String in UIFont.familyNames {
// print("\(i)---项目字体---\(family)")
// for names: String in UIFont.fontNames(forFamilyName: family) {
// print("== \(names)")
// }
// i += 1
// }
return true return true
} }
......
...@@ -88,9 +88,9 @@ extension YHLoginViewModel { ...@@ -88,9 +88,9 @@ extension YHLoginViewModel {
let _ = YHNetRequest.postRequest(url: strUrl) { let _ = YHNetRequest.postRequest(url: strUrl) {
[weak self] json, code in [weak self] json, code in
//1. json字符串 转 对象 //1. json字符串 转 对象
guard let self = self else { return } guard self != nil else { return }
printLog(json) printLog(json)
let dic = json.data _ = json.data
if json.code == 200 { if json.code == 200 {
callBackBlock(true, nil) callBackBlock(true, nil)
......
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