swift playground UITextField spawns keyboard that is too big
问题 Swift in playground on Mac OS. When the user clicks in a UItextfield, a keyboard spawns but it is very large compared to the view and only the first few keys are available. minimal example: import UIKit import PlaygroundSupport class TesterViewController : UIViewController { var testTextField : UITextField! override func loadView() { let view = UIView() view.backgroundColor = .white testTextField = UITextField() testTextField.borderStyle = .roundedRect testTextField.text = "" view.addSubview