我想在每个句子的第一个字符串中使用小写,该用户会写入UITextView
。
实施例
lorem ipsum dolor坐下来。奉献精神。 phasellus等 faucibus orci的tincidunt eros。
UITextfield
有很多相关问题,但我找不到任何与UITextview
有关的有用答案。是否可以使用UITextView属性或者我需要检查每个字符串并使它们小写?我试图在Interface Builder中设置键盘没有任何成功。
答案 0 :(得分:4)
检查
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
您可以使用以下内容 -
typedef enum : NSInteger {
UITextAutocapitalizationTypeNone ,
UITextAutocapitalizationTypeWords ,
UITextAutocapitalizationTypeSentences ,
UITextAutocapitalizationTypeAllCharacters ,
} UITextAutocapitalizationType;
默认值是此属性的默认值是UITextAutocapitalizationTypeSentences。