fix: workaround paste crash on iOS 14.x issue

This commit is contained in:
CMK 2022-12-01 15:29:56 +08:00
parent 7aed050ded
commit fd9a253fac
1 changed files with 14 additions and 10 deletions

View File

@ -13,6 +13,9 @@ extension MetaTextView {
public override func paste(_ sender: Any?) {
super.paste(sender)
// fix #660
// https://github.com/mastodon/mastodon-ios/issues/660
if #available(iOS 15.0, *) {
var nextResponder = self.next;
// Force the event to bubble through ALL responders
@ -25,5 +28,6 @@ extension MetaTextView {
}
nextResponder = nextResponder?.next;
}
} // end if
}
}