UITextView将字符从2个字符转移2行

时间:2016-02-02 05:19:02

标签: objective-c uitextview

我有一个聊天表(对应) 用户文本位于UITextView中 如果他们安顿下来在这里输入2个字符,那么在iPhone 4上存在问题

image

并且应该如此

enter image description here

文本创建如下

-(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上解决这个问题?

0 个答案:

没有答案