NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:@"hello world"];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 5)];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(6, 5)];
[attributedString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial-BoldMT" size:20.0] range:NSMakeRange(0, 5)];
[attributedString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:20.0] range:NSMakeRange(6, 5)];
self.titleLabel.attributedText = attributedString;