我有一个聊天表(对应) 用户文本位于UITextView中 如果他们安顿下来在这里输入2个字符,那么在iPhone 4上存在问题
并且应该如此
文本创建如下
-(NSAttributedString *)chatStringsMy:(NSString *)string
{
NSRange rangeBold = [string rangeOfString:string];
NSDictionary *dictBoldText = @{NSFontAttributeName : [UIFont fontWithName:@"Arial" size:14.0],
NSForegroundColorAttributeName : [UIColor whiteColor]
};
NSMutableAttributedString *mutAttrTextViewString = [[NSMutableAttributedString alloc] initWithString:string];
[mutAttrTextViewString setAttributes:dictBoldText range:rangeBold];
return mutAttrTextViewString;
}
在其他iPHone型号上一切正常。 如何在iPhone 4上解决这个问题?