it's a bit of tricky question but i hope some can help me
i want to have a label with custom font in my ios app and if i copied the text in it and paste it any where else .. in another app maybe .. that it pasted with the same font..
i know it's doable i found and app did it before .. but i have no idea how is that!
i used this code but it just copy a text from label
NSString *copyStringverse = [NSString stringWithFormat:@"%@",self.label.text];
UIPasteboard *pb = [UIPasteboard generalPasteboard];
[pb setString:copyStringverse];
any idea?