I'm using AddressBook to get an array of all records, and then displaying the names in a UITableView.
My question is, how can I baldify the correct part of the full name, like in the Contacts app? I could create a huge number of if statements, but I was wondering if there's an easier way.
Here's how I'm retrieving the names:
_person = person;
CFStringRef name = ABRecordCopyCompositeName(person);
NSString *nameString = CFBridgingRelease(name);
[self.textLabel setText:nameString];
Thanks in advance.
Use for example NSAttributedString (you may change every attribute for every part of string). Make your UILabel to use attributed string of course