I have a UIViewController with a UITextField on which I call becomeFirstResponder() immediately in viewDidLoad(). Prior to calling that, I instantiate a UIButton and override:
override var inputAccessoryView: UIButton {
return self.nextButton
}
override func canBecomeFirstResponder() -> Bool {
return true
}
I cannot figure out how to resize the input accessory view. I want to make it taller but it is always 44 points tall. It is just a big UIButton - nothing special. Any suggestions?