I am trying to create a attributed string and add it to a textfield along with a non attributed string. When I try to create the attributed string I get the exception :
Extra Argument String in Call.
Should be self explanatory but can't see it, code is
let theString : NSString = "Correct Answers: "
let labelFont = UIFont(name: "HelveticaNeue-Bold", size: 18)
let attributes : Dictionary = [NSFontAttributeName : labelFont]
//Exception thrown here
var attrString = NSAttributedString(string: "Foo", attributes:attributes);
textfield.text = attrString + "blah blah blah";
Thanks in advance.