As per apple's documentation, if you dont provide any font for given range of attributed string, by default it will take Helvetica font of size 12.
Now rightnow i want to change that default font. Can anyone suggest me how can i do that.
Actually i want to achieve following thing:
i have string with html(dynamic html coming from server), let say it as htmlStr. In this string, it is possible that font have been set for different parts of html, and it is also possible that there might not be any font set for that htmlStr.
Now, as i want to show+edit this htmlStr, So first i am converting this htmlStr into attributedString, then showing it in textview by setting attributedText for textview.
Now my problem is, in case when there is no any font is provided for this htmlStr, it takes default font which of too much small size and not looking good. So, How can i change this default font for attributed string.