//
I did the following code, but when keyboard press some letter, the pressed letter does not appear on the UITextView ? AnyOne have suggestion on this ? plz
`**
UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:@"button1",button2,button3,nil];
actionSheet.actionSheetStyle = UIActionSheetStyleDefault; actionSheet.destructiveButtonIndex = 3;
// _textView is nothing but UITextView
_textView.frame = CGRectMake(10,10,240,59); [actionSheet addSubview:_textView]; [actionSheet showInView:self.view];
[actionSheet release];