This commit is contained in:
2026-03-04 18:09:11 +08:00
parent 2d02e05956
commit e7567909bc
6 changed files with 8 additions and 10 deletions

View File

@@ -26,7 +26,7 @@
}];
self.titleLabel = [[UILabel alloc] init];
self.titleLabel.text = KBLocalized(@"设置");
self.titleLabel.text = KBLocalized(@"Settings");
self.titleLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
self.titleLabel.textColor = [UIColor blackColor];
[self addSubview:self.titleLabel];
@@ -37,7 +37,7 @@
//
UILabel *place = [[UILabel alloc] init];
place.text = KBLocalized(@"这里是设置内容占位");
place.text = KBLocalized(@"Settings content placeholder");
place.textColor = [UIColor darkGrayColor];
place.font = [UIFont systemFontOfSize:14];
[self addSubview:place];