How do I go about making a string bold or italic? NSFormatter seems to be just for numbers, dates or custom things. Is there an easy way to format strings? I just want to format the second item in bold and the last item in italics:
[referenceJournal setStringValue:[NSString stringWithFormat:@"%@, %@:%@, pp. %@", [currentReference valueForKey:@"articleJournal"],[currentReference valueForKey:@"articleVolume"],[currentReference valueForKey:@"articleIssue"],[currentReference valueForKey:@"articlePages"]]];
kman