-1

I've implemented Custom Keyboard Extension in my app, and have a UITableView in it. When I click on the cell of the UITableView which has a text label, I want the text to be able to Auto Send (some apps support AutoSend i.e. SnapChat, Tiktok, Safari).

I searched through UITextDocumentProxy, but wasn't able to achieve the above scenario.

Thanks in advance!

Nikhil Viradiya
  • 87
  • 2
  • 15

1 Answers1

0

Some Auto Sending apps like SnapChat, Tiktok, Safari I have done through this function, when you want to send a text automatically after you want to send text then call

textDocumentProxy?.return()

extension

extension UIKeyInput {
    func `return`() -> Void{
         insertText("\n")
    }
}
Anh vu
  • 46
  • 5