I'm trying to check whether a specific string contains letters or not.
So far I've come across NSCharacterSet.letterCharacterSet() as a set of letters, but I'm having trouble checking whether a character in that set is in the given string. When I use this code, I get an error stating: 
'Character' is not convertible to 'unichar'
For the following code:
for chr in input{
    if letterSet.characterIsMember(chr){
        return "Woah, chill out!"
    }
}
 
     
     
     
     
    