You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since UITextView and NSTextView share most of the underpinnings, including being backed by UTF-16 NSStrings, adding UIKit support should consist of either
adding an adapter like NSTextViewBuffer but for UITextView,
use a TextViewBuffer (sans prefix) for both.
With conditional compilation, #if os(macOS) around the NSTextView property declaration and initializer should do the trick iff the API really is exactly the same.
Add iOS, iPad, ... as deployment targets
Re-use or add tests for UITextView
The text was updated successfully, but these errors were encountered:
Since
UITextView
andNSTextView
share most of the underpinnings, including being backed by UTF-16NSStrings
, adding UIKit support should consist of eitherNSTextViewBuffer
but forUITextView
,TextViewBuffer
(sans prefix) for both.With conditional compilation,
#if os(macOS)
around theNSTextView
property declaration and initializer should do the trick iff the API really is exactly the same.UITextView
The text was updated successfully, but these errors were encountered: