I have a table view. in that one row is having different lines
for that i wrote code like this:
cell.textLabel.text=@"Hi this is PRASAD";
here i want only “PRASAD” with different font & must be in BOLD.
what logic i have to implement in textlabel?
You can’t. A
UILabelcannot have multiple font characteristics. The only option is to make a custom view for the cell that is either a webview or multiple labels.