粘贴后我需要做点什么,怎么做?

时间:2016-12-13 07:15:52

标签: ios custom-keyboard

我想使用自定义键盘扩展程序制作类似于下图的内容,

Custom Keyboard

1 个答案:

答案 0 :(得分:0)

创建TextField的子类

class CustomTexrtField: UITextField {
   //will see implementation later
}

现在只需覆盖其中的粘贴功能:)

override func paste(_ sender: Any?) {
        super.paste(sender)
        //do whatever you want to do here after paste
        print("me here")
    }

希望有所帮助