This commit is contained in:
2025-11-17 20:07:39 +08:00
parent ee433db4ad
commit 005e3c7581
43 changed files with 529 additions and 172 deletions

View File

@@ -26,7 +26,7 @@
}];
self.titleLabel = [[UILabel alloc] init];
self.titleLabel.text = @"设置";
self.titleLabel.text = KBLocalized(@"设置");
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 = @"这里是设置内容占位";
place.text = KBLocalized(@"这里是设置内容占位");
place.textColor = [UIColor darkGrayColor];
place.font = [UIFont systemFontOfSize:14];
[self addSubview:place];
@@ -68,4 +68,3 @@
- (UIButton *)backButton { return self.backButtonInternal; }
@end