UITextField The input space cursor is gone

UITextField The input space cursor is gone

UITextField *textFile =[[UITextField alloc] initWithFrame:CGRectMake(0, 200, 300, 40)]; textFile.backgroundColor = [UIColor redColor]; textFile.tintColor = [UIColor blueColor]; textFile.textAlignment = NSTextAlignmentRight; textFile.clearButtonMode = UITextFieldViewModeWhileEditing; [self.view addSubview:textFile];

我也有同样的问题,这个应该是苹果系统本身的BUG,设置了NSTextAlignmentRight就会出现

UITextField The input space cursor is gone
 
 
Q