Is there any way to customize first letter in UITextView, change color, font size and font family?
Look at screenshot below:

Edit:
Is there pure Objective-C implementation?
Sure, better if it would support iOS4 and later.
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In iOS 6 you can use a simple
NSAttributedString, assigningattributedText.The
NSAttributedStringallows you to specify a dictionary of properties for a range of characters.Update
The quick and easy way going back that far is to use a
UIWebView, which is capable of presenting PDF, HTML, RTF, RTFD, etc.