テキスト ファイルがあり、その半径を変更したいのですが、テキスト フィールドは半径を正しく取りましたが、境界線が切れ目のように見えます。
境界線も半径にするにはどうすればよいですか? 下の画像を参照してください
テキスト ファイルがあり、その半径を変更したいのですが、テキスト フィールドは半径を正しく取りましたが、境界線が切れ目のように見えます。
境界線も半径にするにはどうすればよいですか? 下の画像を参照してください
You can use this code. It's working well for me:
UITextField* txtfield = [[UITextField alloc]initWithFrame:CGRectMake(10, 50, 300, 32)];
[txtfield setBorderStyle:UITextBorderStyleNone];
txtfield.layer.cornerRadius = 15.0;
txtfield.layer.borderWidth = 2.0;
txtfield.layer.borderColor = [UIColor redColor].CGColor;
txtfield.layer.masksToBounds = YES;
[self.view addSubview:txtfield];
Set the background in your view, and set the borderColor to clearColor.