如何以编程方式在自定义键盘扩展中添加按钮

时间:2016-12-18 20:12:14

标签: ios swift ios-keyboard-extension

我正在为iOS构建键盘扩展程序。

目前我尝试以编程方式添加按钮/键:

let button = UIButton(frame: CGRect(x: 15, y: 15, width: 35, height: 20)

button.layer.borderColor = UIColor.white.cgColor

button.layer.borderWidth = 2
button.layer.cornerRadius = 5
button.backgroundColor = UIColor.white
self.view.addSubview(button)

如果我尝试运行该应用程序,则会出现键盘但不显示按钮/键。你知道我的代码有什么问题吗? 总而言之,我只想知道如何在x = 15y = 15的自定义键盘中添加按钮。

0 个答案:

没有答案