房间内聊天和私聊的背景没有使用配置

This commit is contained in:
fengshuo
2021-12-20 14:28:44 +08:00
parent dddb549ae0
commit a01e4b933a
5 changed files with 7 additions and 7 deletions

View File

@@ -3597,7 +3597,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "xplan-ios/xplan-ios.entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 202111041925;
CURRENT_PROJECT_VERSION = 2021121701;
DEVELOPMENT_TEAM = 48UCG35Q9W;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
@@ -3627,7 +3627,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "xplan-ios/xplan-iosRelease.entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 202111041925;
CURRENT_PROJECT_VERSION = 2021121701;
DEVELOPMENT_TEAM = 48UCG35Q9W;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (

View File

@@ -46,7 +46,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<string>2021121701</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>pubgmhd1106467070</string>

View File

@@ -158,7 +158,7 @@
- (UITextField *)inputView{
if (!_inputView) {
_inputView = [[UITextField alloc] init];
NSAttributedString * attribute = [[NSAttributedString alloc] initWithString:@"请输入消息" attributes:@{NSFontAttributeName : [UIFont systemFontOfSize:15], NSForegroundColorAttributeName :UIColorFromRGB(0x555574)}];
NSAttributedString * attribute = [[NSAttributedString alloc] initWithString:@"请输入消息" attributes:@{NSFontAttributeName : [UIFont systemFontOfSize:15], NSForegroundColorAttributeName : [ThemeColor secondTextColor]}];
_inputView.attributedPlaceholder = attribute;
_inputView.borderStyle = UITextBorderStyleNone;
_inputView.tintColor = [ThemeColor appMainColor];
@@ -173,7 +173,7 @@
- (UIView *)inputBackgroundView {
if (!_inputBackgroundView) {
_inputBackgroundView = [[UIView alloc] init];
_inputBackgroundView.backgroundColor = UIColorFromRGB(0x35354B);
_inputBackgroundView.backgroundColor = [ThemeColor appBackgroundColor];
_inputBackgroundView.layer.masksToBounds = YES;
_inputBackgroundView.layer.cornerRadius = 4.f;
}

View File

@@ -169,7 +169,7 @@
- (UIView *)divider {
if (!_divider) {
_divider = [[UIView alloc]init];
_divider.backgroundColor = UIColorFromRGB(0x353548);
_divider.backgroundColor = [ThemeColor dividerColor];
}
return _divider;
}

View File

@@ -188,7 +188,7 @@
#pragma mark - Private Method
- (void)initSubViews {
self.backgroundColor = [ThemeColor mainTextColor];
self.backgroundColor = [ThemeColor appBackgroundColor];
[self addSubview:self.stackView];
[self.stackView addArrangedSubview:self.editTextFiled];
[self.stackView addArrangedSubview:self.sendButton];