在这里,我正在处理CustomKeyboardExtension。在我的可扩展.swift
类文件中,类定义以UIInputViewController
class KeyboardViewController: UIInputViewController {
@IBOutlet var nextKeyboardButton: UIButton!
override func updateViewConstraints() {
super.updateViewConstraints()
// Add custom view sizing constraints here
}
}
UIViewController
那么和有什么区别UIInputViewController
。