I want to make some part of a text string bold.
Eg: This is to be bold. This is normal string.
In Android, it can be easily achieved by using spannable s
You can achieve this using NSMutableAttributedString.
NSMutableAttributedString
Refer Apple docs about NSMutableAttributedString.
I'd tried this answer's code to get bold and normal font in an UILabel.