UITextField右对齐iOS 7

前端之家收集整理的这篇文章主要介绍了UITextField右对齐iOS 7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个问题,当在iOS7上对齐一个UITextField时,当用户键入“空格”时,它不会马上出现.如果我键入另外一个字符空格出现.

在iOS 6中并没有发生

http://www.blogosfera.co.uk/2013/10/ios-7-whitespace-not-visible-to-uitextfield-with-right-alignment/

任何人都知道如何解决这个问题?

解决方法

-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    if (range.location == textField.text.length && [string isEqualToString:@" "]) {
        // ignore replacement string and add your own
        textField.text = [textField.text stringByAppendingString:@"\u00a0"];
        return NO;
    }
    // for all other cases,proceed with replacement
    return YES;
}

从文本中删除代码

self.txtFirstName.text = [self.txtFirstName.text stringByReplacingOccurrencesOfString:@"\u00a0" withString:@" "];

从这个stackoverflow答案 – UITextField spacebar does not advance cursor in iOS 7

原文链接:/iOS/337240.html

猜你在找的iOS相关文章