Browse Source

1.文字设置默认黑色 (按时模式文字会变白)

huangxiaodong 1 year ago
parent
commit
186c362a27

+ 2 - 2
创维盒子/双子星云手机/AppDelegate/PrefixHeader.pch

@@ -82,8 +82,8 @@ isBangsScreen; \
 //#define CloudService           @"http://14.18.190.141:11180"
 //#define CloudService           @"http://14.18.190.141:1280"
 //创维盒子 测试地址
-#define CloudService   @"http://14.18.190.141:1801"
-//#define CloudService   @"http://hiboxde.armclouding.com:7780"
+//#define CloudService   @"http://14.18.190.141:1801"
+#define CloudService   @"http://hiboxde.armclouding.com:7780"
 
 
 #define AESCODEKEEYY @"fvO8gAfNSr1tbdQe"

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/downLoadFile/view/downloadFileBottomView.m

@@ -45,6 +45,7 @@
 - (void)drawAnyView{
     _selectNumLabel = [[UILabel alloc] init];
     _selectNumLabel.font = [UIFont boldSystemFontOfSize:16.0];
+    _selectNumLabel.textColor = [UIColor blackColor];
     [self addSubview:_selectNumLabel];
     
     [_selectNumLabel mas_makeConstraints:^(MASConstraintMaker *make) {

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/photoView/AJPhotoGroupCell.m

@@ -37,6 +37,7 @@
         textLabel.font = [UIFont boldSystemFontOfSize:16];
         textLabel.backgroundColor = [UIColor clearColor];
         textLabel.numberOfLines = 0;
+        textLabel.textColor = [UIColor blackColor];
         [self.contentView addSubview:textLabel];
         self.groupTextLabel = textLabel;
     }

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/photoView/uploadFileBottomView.m

@@ -27,6 +27,7 @@
 - (void)drawAnyView{
     _selectNumLabel = [[UILabel alloc] init];
     _selectNumLabel.font = [UIFont boldSystemFontOfSize:16.0];
+    _selectNumLabel.textColor = [UIColor blackColor];
     [self addSubview:_selectNumLabel];
     
     [_selectNumLabel mas_makeConstraints:^(MASConstraintMaker *make) {

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/uploadFileView/backupsFileRecordCell.m

@@ -126,6 +126,7 @@
     
     _fileNamelabel = [[UILabel alloc] init];
     _fileNamelabel.font = [UIFont boldSystemFontOfSize:16.0];
+    _fileNamelabel.textColor = [UIColor blackColor];
     //_fileNamelabel.backgroundColor = [UIColor greenColor];
     [self.contentView addSubview:_fileNamelabel];
     

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/uploadFileView/downloadFileRecordCell.m

@@ -123,6 +123,7 @@
     
     _fileNamelabel = [[UILabel alloc] init];
     _fileNamelabel.font = [UIFont boldSystemFontOfSize:16.0];
+    _fileNamelabel.textColor = [UIColor blackColor];
     //_fileNamelabel.backgroundColor = [UIColor greenColor];
     [self.contentView addSubview:_fileNamelabel];
     

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/uploadFileView/uploadFileRecordCell.m

@@ -122,6 +122,7 @@
     
     _fileNamelabel = [[UILabel alloc] init];
     _fileNamelabel.font = [UIFont boldSystemFontOfSize:16.0];
+    _fileNamelabel.textColor = [UIColor blackColor];
     //_fileNamelabel.backgroundColor = [UIColor greenColor];
     [self.contentView addSubview:_fileNamelabel];
     

+ 1 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/uploadImageOrVideoViewController.m

@@ -87,6 +87,7 @@
     UILabel *titleLabel = [[UILabel alloc] init];
     titleLabel.textAlignment = NSTextAlignmentCenter;
     titleLabel.font = [UIFont boldSystemFontOfSize:18.0];
+    titleLabel.textColor = [UIColor blackColor];
     titleLabel.translatesAutoresizingMaskIntoConstraints = NO;
     [self.navBarBGView addSubview:titleLabel];
 

+ 1 - 0
创维盒子/双子星云手机/Class/Set/view/allVersionView.m

@@ -85,6 +85,7 @@
     versionTipLabel.text = NSLocalizedString(@"my_set_about_version_tap_tip",nil) ;
     versionTipLabel.textAlignment = NSTextAlignmentCenter;
     versionTipLabel.font = [UIFont boldSystemFontOfSize:16.0];
+    versionTipLabel.textColor = [UIColor blackColor];
     [_whiteBgView addSubview:versionTipLabel];
     
     [versionTipLabel mas_makeConstraints:^(MASConstraintMaker *make) {

+ 4 - 0
创维盒子/双子星云手机/Class/Set/view/mySetHeadView.m

@@ -132,6 +132,7 @@
     UILabel *titleLabel = [[UILabel alloc] init];
     titleLabel.text = NSLocalizedString(@"my_set_no_File_upload_title",nil) ;
     titleLabel.font = [UIFont boldSystemFontOfSize:16.0];
+    titleLabel.textColor = [UIColor blackColor];
     [fileUploadBgView addSubview:titleLabel];
 
     [titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
@@ -241,6 +242,7 @@
     UILabel *BackupsTitleLabel = [[UILabel alloc] init];
     BackupsTitleLabel.text = NSLocalizedString(@"set_Privacy_title",nil) ;
     BackupsTitleLabel.font = [UIFont boldSystemFontOfSize:16.0];
+    BackupsTitleLabel.textColor = [UIColor blackColor];
     [fileBackupsBgView addSubview:BackupsTitleLabel];
 
     [BackupsTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
@@ -340,6 +342,7 @@
     UILabel *imageBackupsTitleLabel = [[UILabel alloc] init];
     imageBackupsTitleLabel.text = NSLocalizedString(@"set_Privacy_title_image",nil) ;
     imageBackupsTitleLabel.font = [UIFont systemFontOfSize:14.0];
+    imageBackupsTitleLabel.textColor = [UIColor blackColor];
     [imageBackupsBgView addSubview:imageBackupsTitleLabel];
 
     [imageBackupsTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
@@ -398,6 +401,7 @@
     UILabel *otherTitleLabel = [[UILabel alloc] init];
     otherTitleLabel.text = NSLocalizedString(@"set_other_title",nil) ;
     otherTitleLabel.font = [UIFont boldSystemFontOfSize:16.0];
+    otherTitleLabel.textColor = [UIColor blackColor];
     [otherBgView addSubview:otherTitleLabel];
 
     [otherTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) {

+ 1 - 0
创维盒子/双子星云手机/CloudPlayer/View/playerShowSecretkeyView.m

@@ -44,6 +44,7 @@
     titleLab.text = NSLocalizedString(@"player_Secret_key_title",nil);
     titleLab.textAlignment = NSTextAlignmentCenter;
     titleLab.font = [UIFont boldSystemFontOfSize:18];
+    titleLab.textColor = [UIColor blackColor];
     [_whiteBgView addSubview:titleLab];
     
     [titleLab mas_makeConstraints:^(MASConstraintMaker *make) {