我正在实现一个 iOS 应用程序,并将两个字符串连接起来并插入到一个标签中。我想给第一个字符串与第二个字符串不同的颜色。
这是我的字符串,它们被连接起来......
NSString *dateVale=[日期 objectAtIndex:indexPath.row];
NSString *addressValue=[地址 objectAtIndex:indexPath.row];
TextLabel.text = [NSString stringWithFormat:@"%@ \n%@",dateVale,addressValue];
那么如何给第一个字符串一个蓝色呢?
提前致谢。