换声网key

This commit is contained in:
liyuhua
2023-11-13 19:25:16 +08:00
parent 906be04310
commit 19b3bd7040
3 changed files with 9 additions and 9 deletions

View File

@@ -31,7 +31,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"

View File

@@ -48,7 +48,7 @@ NSString * const KeyWithType(KeyType type) {
@(KeyType_QQSecret) : @"715dd2601777347cd57af77c3e28402f",
@(KeyType_WechatAppid) : @"wx4b772d5ebc964a38",
@(KeyType_WechatSecret) : @"f045979c311e13725cbb9aa87c265668",
@(KeyType_Agora) : @"36c31139d7b242d98e24c865df14b272",
@(KeyType_Agora) : @"5b4d929b6c4e4af190550c4a2ec5cd4c",
@(KeyType_TRTC) : @"1400798783",
@(KeyType_NetEase) : @"5e76ec47632d86c30ce18eabfa332b6a",
@(KeyType_APNSCer) : @"yinyouApnsRelease",
@@ -71,7 +71,7 @@ NSString * const KeyWithType(KeyType type) {
@(KeyType_QQSecret) : @"715dd2601777347cd57af77c3e28402f",
@(KeyType_WechatAppid) : @"wx4b772d5ebc964a38",
@(KeyType_WechatSecret) : @"f045979c311e13725cbb9aa87c265668",
@(KeyType_Agora) : @"7ae1a8dabe7a44a9a67c829faa409e70",
@(KeyType_Agora) : @"5b4d929b6c4e4af190550c4a2ec5cd4c",
@(KeyType_TRTC) : @"1400798783",
@(KeyType_NetEase) : @"5d5a833a2d0ff1304a5d8bed53d2af5b",
@(KeyType_APNSCer) : @"yinyouApnsDebug",

View File

@@ -163,15 +163,15 @@
- (UIButton *)onLookBtn {
if (!_onLookBtn) {
_onLookBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[_onLookBtn setBackgroundImage:[UIImage imageWithColor:[ThemeColor disableButtonColor]] forState:UIControlStateNormal];
[_onLookBtn setBackgroundImage:kImage(@"room_pk_look_up") forState:UIControlStateNormal];
[_onLookBtn setTitle:@"来围观" forState:UIControlStateNormal];
[_onLookBtn setTitleColor:UIColorFromRGB(0xffffff) forState:UIControlStateNormal];
// [_onLookBtn setTitleColor:UIColorFromRGB(0xffffff) forState:UIControlStateNormal];
_onLookBtn.titleLabel.font = [UIFont systemFontOfSize:12 weight:UIFontWeightMedium];
_onLookBtn.userInteractionEnabled = NO;
_onLookBtn.layer.masksToBounds = YES;
_onLookBtn.layer.cornerRadius = 9;
_onLookBtn.layer.borderWidth = 1;
_onLookBtn.layer.borderColor = [UIColor whiteColor].CGColor;
// _onLookBtn.layer.masksToBounds = YES;
// _onLookBtn.layer.cornerRadius = 9;
// _onLookBtn.layer.borderWidth = 1;
// _onLookBtn.layer.borderColor = [UIColor whiteColor].CGColor;
}
return _onLookBtn;
}