I have a string of text containing both plain and italic text. How do I represent this using a UILabel?
"I am plain text whereas I am italic text
var someText = "I am plain text whereas I am italic text
UILabel myLabel = new UILabel(new RectangleF(0,0,100,40));
myLabel.Text = someText;