房间内聊天和私聊的背景没有使用配置
This commit is contained in:
@@ -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 = (
|
||||
|
@@ -46,7 +46,7 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<string>2021121701</string>
|
||||
<key>LSApplicationQueriesSchemes</key>
|
||||
<array>
|
||||
<string>pubgmhd1106467070</string>
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -169,7 +169,7 @@
|
||||
- (UIView *)divider {
|
||||
if (!_divider) {
|
||||
_divider = [[UIView alloc]init];
|
||||
_divider.backgroundColor = UIColorFromRGB(0x353548);
|
||||
_divider.backgroundColor = [ThemeColor dividerColor];
|
||||
}
|
||||
return _divider;
|
||||
}
|
||||
|
@@ -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];
|
||||
|
Reference in New Issue
Block a user