V 1.5 (1.0)

This commit is contained in:
bluesea 2024-04-12 21:02:41 +08:00
parent 832447d9cc
commit 3301b304b0
6 changed files with 48 additions and 10 deletions

View File

@ -1028,7 +1028,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1.4; CURRENT_PROJECT_VERSION = 1.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 8DQD6BV6H9; DEVELOPMENT_TEAM = 8DQD6BV6H9;
ENABLE_APP_SANDBOX = NO; ENABLE_APP_SANDBOX = NO;
@ -1057,7 +1057,7 @@
"$(inherited)", "$(inherited)",
"@executable_path/Frameworks", "@executable_path/Frameworks",
); );
MARKETING_VERSION = 1.4; MARKETING_VERSION = 1.5;
OTHER_CFLAGS = ""; OTHER_CFLAGS = "";
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS"; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
PRODUCT_BUNDLE_IDENTIFIER = com.nsk.tdvideo; PRODUCT_BUNDLE_IDENTIFIER = com.nsk.tdvideo;
@ -1081,7 +1081,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1.4; CURRENT_PROJECT_VERSION = 1.0;
DEVELOPMENT_TEAM = 8DQD6BV6H9; DEVELOPMENT_TEAM = 8DQD6BV6H9;
ENABLE_APP_SANDBOX = NO; ENABLE_APP_SANDBOX = NO;
GCC_PREPROCESSOR_DEFINITIONS = ( GCC_PREPROCESSOR_DEFINITIONS = (
@ -1109,7 +1109,7 @@
"$(inherited)", "$(inherited)",
"@executable_path/Frameworks", "@executable_path/Frameworks",
); );
MARKETING_VERSION = 1.4; MARKETING_VERSION = 1.5;
OTHER_CFLAGS = ""; OTHER_CFLAGS = "";
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS"; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS";
PRODUCT_BUNDLE_IDENTIFIER = com.nsk.tdvideo; PRODUCT_BUNDLE_IDENTIFIER = com.nsk.tdvideo;

View File

@ -679,6 +679,38 @@
endingLineNumber = "169" endingLineNumber = "169"
landmarkName = "show(praiseCallback:negativeCallback:)" landmarkName = "show(praiseCallback:negativeCallback:)"
landmarkType = "9"> landmarkType = "9">
<Locations>
<Location
uuid = "B6E2DD19-CC45-4EF2-94A7-8DFC039BBE5E - 8f11d5983f12631c"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "static SwiftProject.FeedbackView.show(praiseCallback: () -&gt; (), negativeCallback: () -&gt; ()) -&gt; ()"
moduleName = "SwiftProject"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/aaa/Documents/IOS%20Dev/VR/SwiftProject/SwiftProject/Project/View/FeedbackView/FeedbackView.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "155"
endingLineNumber = "155"
offsetFromSymbolStart = "264">
</Location>
<Location
uuid = "B6E2DD19-CC45-4EF2-94A7-8DFC039BBE5E - 8f11d5983f121d73"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "static SwiftProject.FeedbackView.show(praiseCallback: () -&gt; (), negativeCallback: () -&gt; ()) -&gt; ()"
moduleName = "SwiftProject"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/aaa/Documents/IOS%20Dev/VR/SwiftProject/SwiftProject/Project/View/FeedbackView/FeedbackView.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "170"
endingLineNumber = "170"
offsetFromSymbolStart = "264">
</Location>
</Locations>
</BreakpointContent> </BreakpointContent>
</BreakpointProxy> </BreakpointProxy>
<BreakpointProxy <BreakpointProxy

View File

@ -60,7 +60,7 @@ class FeedBackVC: BaseController, UITextViewDelegate, UITextFieldDelegate {
super.viewDidLoad() super.viewDidLoad()
navLine?.isHidden = true navLine?.isHidden = true
setLeftOneBtnImg(imgStr: "menuvc_backbtn") setLeftOneBtnImg(imgStr: "menuvc_backbtn")
leftBtn1?.addTarget(self, action: #selector(popVC(_ :)), for: .touchUpInside) // leftBtn1?.addTarget(self, action: #selector(popVC(_ :)), for: .touchUpInside)
self.view.backgroundColor = UIColor(r: 6, g: 5, b: 7, a: 1) self.view.backgroundColor = UIColor(r: 6, g: 5, b: 7, a: 1)
// //
titleLab?.isHidden = false titleLab?.isHidden = false

View File

@ -15,7 +15,13 @@ class MenuVC: BaseController,UITableViewDelegate,UITableViewDataSource {
static let kMenuVCCell_identifier = "kMenuVCCell_identifier" static let kMenuVCCell_identifier = "kMenuVCCell_identifier"
var dataSource:[[[String:Any]]]{ var dataSource:[[[String:Any]]]{
get { get {
[getDatasourceOneSection(), getDatasourceTwoSection(), getDatasourceThreeSection()] let tempDic = getDatasourceThreeSection()
if tempDic.count > 0 {
return [getDatasourceOneSection(), getDatasourceTwoSection(), getDatasourceThreeSection()]
}
else {
return [getDatasourceOneSection(), getDatasourceTwoSection()]
}
} }
} }
@ -52,7 +58,7 @@ class MenuVC: BaseController,UITableViewDelegate,UITableViewDataSource {
func configureUI() { func configureUI() {
self.navLine?.isHidden = true self.navLine?.isHidden = true
self.setLeftOneBtnImg(imgStr: "menuvc_backbtn") self.setLeftOneBtnImg(imgStr: "menuvc_backbtn")
self.leftBtn1?.addTarget(self, action: #selector(dismissVC(sender: )), for: .touchUpInside) // self.leftBtn1?.addTarget(self, action: #selector(dismissVC(sender: )), for: .touchUpInside)
self.view.backgroundColor = UIColor(r: 6, g: 5, b: 7, a: 1) self.view.backgroundColor = UIColor(r: 6, g: 5, b: 7, a: 1)
let topView = topView() let topView = topView()
self.view.addSubview(topView) self.view.addSubview(topView)
@ -151,10 +157,10 @@ class MenuVC: BaseController,UITableViewDelegate,UITableViewDataSource {
let config = FirebaseRemoteConfig.RemoteConfig.remoteConfig() let config = FirebaseRemoteConfig.RemoteConfig.remoteConfig()
let menuParams = config.configValue(forKey: "menuParams") let menuParams = config.configValue(forKey: "menuParams")
guard let dicInfo = menuParams.jsonValue as? [String:Any] else { guard let dicInfo = menuParams.jsonValue as? [String:Any] else {
return [["":""]] return []
} }
guard let contactConfig = dicInfo["contactConfig"] as? [String:Any] else { guard let contactConfig = dicInfo["contactConfig"] as? [String:Any] else {
return [["":""]] return []
} }

View File

@ -3,6 +3,6 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>menuParams</key> <key>menuParams</key>
<string>{"contactConfig":{"default":[{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/wechat.png","title":"WeChat","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/tencent.png","title":"Tencent QQ","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/email.png","title":"Email","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/telegram.png","title":"Telegram","url":"mailto://fangaoqdi@163.com"}],"zh":[{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/wechat.png","title":"WeChat","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/tencent.png","title":"Tencent QQ","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/email.png","title":"Email","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/telegram.png","title":"Telegram","url":"mailto://fangaoqdi@163.com"}]}}</string> <string>{"contactConfig":{"default":[{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/wechat.png","title":"WeChat","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/tencent.png","title":"Tencent QQ","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/email.png","title":"Email","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/telegram.png","title":"Telegram","url":"mailto://fangaoqdi@163.com"}],"zh":[{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/wechat.png","title":"WeChat","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/tencent.png","title":"Tencent QQ","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/email.png","title":"Email","url":"mailto://fangaoqdi@163.com"},{"icon":"https://resource-sg-public.obs.ap-southeast-3.myhuaweicloud.com/vpcamera/telegram.png","title":"Telegram","url":"mailto://fangaoqdi@163.com"}]},"isOnline":0}</string>
</dict> </dict>
</plist> </plist>