无法 select 在 IOS 的 UITextfield 和 UItextview 中加载 AutoSuggestions

Unable to select AutoSuggestions loading in UITextfield and UItextview in IOS

在 UITextfields 和 UITextviews 中加载时,我们无法 select 自动建议。 我们正在使用 IQkeyboardManager 来自动滚动 UItextfield 可见性。

此问题由 gestureRecognizer

示例:

public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
   
        let className = String(describing: self.classForCoder)
        if className == "TUIPredictionView" {
            return true
        }
        return (touch.view == self)
        
    }