我有个奇怪的问题。
UITextField *txtField;
txtField.textAlignment = UITextAlignmentCenter;此代码在iOS3.0和4.0中运行良好。(光标在中心闪烁& textAlignment,同时输入文本也在中心)
然而,在ios 4.2中,文本对齐方式仍然居中,但光标在左侧闪烁。
发布于 2011-02-26 01:51:59
我在iOS4.2上运行得很好。光标在书写时居中并向右移动。
text = [[UITextField alloc] initWithFrame:CGRectMake(80.0, 8.0, 210.0, 30.0)];
text.clearsOnBeginEditing = YES;
text.delegate = self;
text.borderStyle = UITextBorderStyleRoundedRect;
text.textAlignment = UITextAlignmentCenter;这是我的代码
https://stackoverflow.com/questions/4469201
复制相似问题