When clicked, I want a capital letter, as in this illustration.

How can I do this for my new ក button? This is the code I am creating:
consonantButton = [UIButton buttonWithType:UIButtonTypeCustom]; [consonantButton setTitle:@"ក" forState:UIControlStateNormal]; consonantButton.titleLabel.font = [UIFont fontWithName:@"Hanuman" size:30]; consonantButton.frame = CGRectMake(242.0, 328.0, 27.0, 42.0); [consonantButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; [consonantButton setTitleShadowColor:[UIColor whiteColor] forState:UIControlStateNormal];
How to make this shape when you click? how does is called? This is the code I made for the action: - (void) touchConsonantButton: (UIButton *) sender {// [self.target performSelector: consonantAction withObject: sender]; consonantButton.frame = CGRectMake (242.0, 310.0, 54.0, 84.0); consonantButton.titleLabel.font = [UIFont fontWithName: @ "Hanuman" size: 50];}
and this is a screenshot: (it does not disappear by default)

user1584341
source share