シミュレーター 5.0 を使用して xcod4.2 で次のコードを記述できません。別の解決策を教えてください。
NSMutableAttributedString *str=[[NSMutableAttributedString alloc] initwithString:@"This is Green and Red"];
NSDictionary *redatt=@{NSForeGroundColorAttributeName:[UIColor redColor]};
NSDictionary *greenatt=@{NSForeGroundColorAttributeName:[UIColor greenColor]};
[str setAttribute:greenatt range:NSMakeRange(9,5)];
[str setAttribute:redatt range:NSMakeRange(19,3)];
lbl.attributedText=str;