UITextfield keyboard with only alphabet, no numbers, no caps, no spacebar?

前端 未结 8 1925
深忆病人
深忆病人 2021-02-06 06:33

I want the keyboard for the UITextfield to only have a-z, no numbers, no special characters (!@$!@$@!#), and no caps. Basicly I am going for a keyboard with only the alphabet.

8条回答
  •  隐瞒了意图╮
    2021-02-06 06:57

    An easiet way would be:

    if let range = string.rangeOfCharacterFromSet(NSCharacterSet.letterCharacterSet())
        return true
    }
    else {
        return false
    }
    

提交回复
热议问题