Commit c84326a0 authored by David黄金龙's avatar David黄金龙

Merge branch '630-dev'

* 630-dev:
  修改版本号
  取消 Ai 动画
  修改版本号  0.9.0.11
parents 0575448e 722d4db1
...@@ -82,9 +82,9 @@ platform :ios do ...@@ -82,9 +82,9 @@ platform :ios do
# 拉取最新代码 # 拉取最新代码
sh "git pull origin #{myPack_branch}" sh "git pull origin #{myPack_branch}"
# 显示git当前分支最新submit id # 显示git当前分支最新submit id
sh "git rev-parse HEAD" # sh "git rev-parse HEAD"
# 更新pod第三方库 # 更新pod第三方库
cocoapods(use_bundle_exec: true) # cocoapods(use_bundle_exec: true)
gym( gym(
workspace: 'galaxy.xcworkspace', workspace: 'galaxy.xcworkspace',
......
...@@ -3740,7 +3740,7 @@ ...@@ -3740,7 +3740,7 @@
CODE_SIGN_ENTITLEMENTS = galaxy/galaxyTestEnv.entitlements; CODE_SIGN_ENTITLEMENTS = galaxy/galaxyTestEnv.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 10; CURRENT_PROJECT_VERSION = 12;
DEVELOPMENT_TEAM = RXHYW88XR7; DEVELOPMENT_TEAM = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
...@@ -3944,7 +3944,7 @@ ...@@ -3944,7 +3944,7 @@
CODE_SIGN_ENTITLEMENTS = galaxy/galaxyDebug.entitlements; CODE_SIGN_ENTITLEMENTS = galaxy/galaxyDebug.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 10; CURRENT_PROJECT_VERSION = 12;
DEVELOPMENT_TEAM = RXHYW88XR7; DEVELOPMENT_TEAM = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
...@@ -3990,7 +3990,7 @@ ...@@ -3990,7 +3990,7 @@
CODE_SIGN_ENTITLEMENTS = galaxy/galaxy.entitlements; CODE_SIGN_ENTITLEMENTS = galaxy/galaxy.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 10; CURRENT_PROJECT_VERSION = 12;
DEVELOPMENT_TEAM = RXHYW88XR7; DEVELOPMENT_TEAM = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
......
...@@ -281,11 +281,24 @@ extension YHMatchUserViewController: YHMatchProtocol { ...@@ -281,11 +281,24 @@ extension YHMatchUserViewController: YHMatchProtocol {
self.launchLottieView.isHidden = true self.launchLottieView.isHidden = true
self.rotateLottieView.isHidden = false self.rotateLottieView.isHidden = false
self.rotateLottieView.loopMode = .loop self.rotateLottieView.loopMode = .loop
self.rotateLottieView.play() self.rotateLottieView.play { [weak self] completed in
DispatchQueue.global().asyncAfter(deadline: .now()+2.0, execute: { if completed {
print("yyyyyyyyy")
} else {
print("nnnnnnnnnn")
self?.isStartMatch = false
self?.resetAnimation()
}
}
}
DispatchQueue.main.asyncAfter(deadline: .now()+2.0, execute: {
if self.isStartMatch {
self.requestMatchUserList() self.requestMatchUserList()
}) } else {
self.resetAnimation()
} }
})
} }
} }
...@@ -297,9 +310,13 @@ extension YHMatchUserViewController { ...@@ -297,9 +310,13 @@ extension YHMatchUserViewController {
let vc = YHMatchResultListViewController() let vc = YHMatchResultListViewController()
vc.delegate = self vc.delegate = self
vc.matchUsersArr = self.viewModel.matchUserArr vc.matchUsersArr = self.viewModel.matchUserArr
self.navigationController?.pushViewController(vc, completion: {
self.resetAnimation() self.resetAnimation()
if let curVc = UIViewController.current as? YHCommunityViewController,curVc.segmentedView.selectedIndex == 0 {
curVc.navigationController?.pushViewController(vc, completion: {
}) })
} else {
printLog("hhhhhhhhhhhhhhhhhhhhhhhh")
}
} else { } else {
var msg = "匹配失败" var msg = "匹配失败"
......
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