|
@@ -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) {
|