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

@@ -20,7 +20,7 @@
- (void)setupTextField {
CGRect frame = CGRectMake(([UIScreen mainScreen].bounds.size.width - 200)/2, ([UIScreen mainScreen].bounds.size.height - 200)/2, 200, 200);
self.textView = [[UITextView alloc] initWithFrame:frame];
self.textView.text = KBLocalized(@"测试");
self.textView.text = KBLocalized(@"Test");
self.textView.layer.borderColor = [UIColor blackColor].CGColor;
self.textView.layer.borderWidth = 0.5;
[self.view addSubview:self.textView];