We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to render a custom Context menu above selection. Therefore I have to disable system's default context menu.
How can I modify Swift side codes to do so? I tried React-Native's solution which is like below but it didn't work.
override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { return false } override func buildMenu(with builder: UIMenuBuilder) { if #available(iOS 17.0, *) { builder.remove(menu: .autoFill) } super.buildMenu(with: builder) }
I Added this in RNUITextView.swift and RNUITextViewChild.swift. Can anyone tell me what am I missing?
RNUITextView.swift
RNUITextViewChild.swift
Thanks in advance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to render a custom Context menu above selection. Therefore I have to disable system's default context menu.
How can I modify Swift side codes to do so? I tried React-Native's solution which is like below but it didn't work.
I Added this in
RNUITextView.swift
andRNUITextViewChild.swift
. Can anyone tell me what am I missing?Thanks in advance.
The text was updated successfully, but these errors were encountered: