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.>
An easiet way would be:
if let range = string.rangeOfCharacterFromSet(NSCharacterSet.letterCharacterSet()) return true } else { return false }