Core Text and copy 'n paste on iOS

后端 未结 2 1158
深忆病人
深忆病人 2021-01-07 09:32

Is it possible in iOS to render complex text with CoreText and have copy \'n paste feature? I’ve found a lot of example about CoreText rendering but nothing that concerns co

相关标签:
2条回答
  • 2021-01-07 10:12

    Yes, but you have to implement Copy & Paste yourself through use of UIMenuController. There is no 'built in' support in CoreText for Copy & Paste, as CoreText is a very low level library.

    0 讨论(0)
  • 2021-01-07 10:15

    RyanR is correct, there's no built in support in CoreText for Copy & Paste, but you can make your own copy & paste.

    Take a look at this other topic post.

    Core Text - select text in iPhone?

    0 讨论(0)
提交回复
热议问题