0

我需要在iOS8Custom Keyboard中重新加载我的自定义键盘Extension

我有可以更改键盘背景颜色的颜色偏好。

[self reloadInputView];

上面的代码不起作用,也不能重新加载。

那么我怎样才能重新加载UIInputViewControlleriOS8

4

1 回答 1

1

也许你应该在主线程上调用setter方法,你可以试试。比如... dispatch_async(dispatch_get_main_queue(), { //这里写代码来设置可以导致UI改变的属性... })

于 2014-07-08T08:27:35.450 回答