I want to change Font type and size in UITableView. For example, how would I set it to Tahoma?
I want to change Font type and size in UITableView. For example, how would I set it to Tahoma?
cell.textLabel.font = [UIFont fontWithName:@"ArialMT" size:144];
where cell is a UITableViewCell you would return in -tableView:cellForRowAtIndexPath:.
Tahoma is not shipped with iOS by default, nor can you legally copy it without a proper license. But you could provide a custom free font if you don't like Arial, see How to include and use new fonts in iPhone SDK?.