Luca Bartoletti
Luca Bartoletti

Reputation: 2447

Core Text and copy 'n paste on iOS

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 copy 'n paste.

Upvotes: 1

Views: 1249

Answers (2)

javsmo
javsmo

Reputation: 1337

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?

Upvotes: 1

RyanR
RyanR

Reputation: 7758

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.

Upvotes: 2

Related Questions