1

このコードは、多数のテキスト フィールドを描画し、タグを割り当てて、それぞれにタグ番号を書き込みます。タグ番号15のテキストフィールドに「X」と書くにはどうすればよいですか?

- (void)viewDidLoad
{
    int z = 0;
    [super viewDidLoad];
    for (int y = 10; y < 300; y = y + 25)
    {
        for (int x = 10; x < 300; x = x + 25)
        {
            textField = [[UITextField alloc] initWithFrame:CGRectMake(x, y, 25, 25)];
            textField.borderStyle = UITextBorderStyleLine;
            textField.textColor = [UIColor blackColor];
            textField.font = [UIFont fontWithName:@"ArialMT" size:16];
            textField.backgroundColor = [UIColor whiteColor];
            textField.autocorrectionType = UITextAutocorrectionTypeNo;
            textField.backgroundColor = [UIColor clearColor];
            textField.textAlignment = NSTextAlignmentCenter;
            textField.enabled = NO;            
            textField.text = [NSString stringWithFormat:@"%d", z];
            [self.view addSubview:textField];
            textField.tag = z++;
        }
    }
}
4

1 に答える 1

0

次のように呼び出すことで、適切なテキスト フィールドを取得できますviewWithTag

UITextField *myField = (UITextField*)[self.view viewWithTag:15];
// Now that I have my field, I can write some text into it:
myField.text = @"X";
于 2012-12-04T02:10:44.153 に答える