I\'d like to make a UIKeyCommand that uses only the [return] key. So far I\'ve tried:
UIKeyCommand
[return]
UIKeyCommand *selectCommand = [UIKeyCommand k
Using @"\r" for carriage return instead of @"\n" for newline should work.
@"\r"
@"\n"