0

I am building a new app. I want to share some texts to another app. eg, iMessage, Notes and so on.

The problem is I can show these texts as "Courier"(monospaced font). But how can I tell iMessage or Notes show these texts as the same font?

UIPasteboard can do it?

  • I believe [this question](http://stackoverflow.com/questions/12601039/copy-nsattributedstring-in-uipasteboard) may help you. – Marco Pompei Jul 23 '13 at 06:39

1 Answers1

0

Your Q: UIPasteboard can do it?

Ans: No.

the fonts are set by each UIControl that belong to each apps. One idea to do this is to capture the font as image, and copy that image into UIPasteboard. But not sure if that's acceptable by you.

Cheers

GeneCode
  • 7,545
  • 8
  • 50
  • 85