Fivee

导航

UE IOS 点击响应问题

解决的主要是IOS12以上的设备, 在键盘隐藏后, 点击依然被吞的问题.

主要参考 IOS的responder问题

在IOSView中, DeactiveKeyboard的时候, 需要ResignResponder。

// return nil之后, view持有的 CachedMarkedText 会残留, 导致一个textview无法被释放掉。非常的隐晦,要注意!

- (UITextRange *)markedTextRange
{
    return [[[UITextRange alloc]init] autorelease];
    //if (nil != CachedMarkedText) {
    //  return[[[UITextRange alloc] init] autorelease];
    //}
    //return nil; // Nil if no marked text.
}

 

posted on 2022-06-15 11:54  Fivee  阅读(50)  评论(0编辑  收藏  举报