UITextField的占位文字水平居中

2017-09-13  本文已影响43人  姚姚先生

UITextField的提示文字水平居中:

NSMutableParagraphStyle *paragraphStyle = NSMutableParagraphStyle.new;

paragraphStyle.alignment = NSTextAlignmentCenter;

self.textField.attributedPlaceholder = [NSAttributedString.alloc initWithString:@"tips"
                                                                     attributes:@{NSParagraphStyleAttributeName:paragraphStyle}];
上一篇下一篇

猜你喜欢

热点阅读