Estoy haciendo una aplicación para iPhone similar a la aplicación de mensajes que viene en el teléfono. Acabo de configurar la capacidad de copiar mensajes a través de un UIMenuController, pero si el teclado se muestra y alguien intenta copiar un mensaje, el teclado se va (presumiblemente debido a mi [cell becomeFirstResponder];
donde cell
es la celda de mensajes que se está copiando).Mostrando UIMenuController pierde el teclado
¿Hay alguna manera de mostrar el mensaje Copiar sin perder el teclado?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath {
//...other cell setup stuff...
UILongPressGestureRecognizer *longPressGesture =
[[UILongPressGestureRecognizer alloc]
initWithTarget:self action:@selector(showCopyDialog:)];
[cell addGestureRecognizer:longPressGesture];
return cell;
}
- (void)showCopyDialog:(UILongPressGestureRecognizer *)gesture
{
if (gesture.state == UIGestureRecognizerStateBegan)
{
ConvoMessageCell *cell = (ConvoMessageCell *)[gesture view];
NSIndexPath *indexPath = [self.tblConvo indexPathForCell:cell];
UIMenuController *theMenu = [UIMenuController sharedMenuController];
[cell becomeFirstResponder];
[theMenu setTargetRect:CGRectMake(menuX, menuY, 100, 100) inView:cell];
[theMenu setMenuVisible:YES animated:YES];
}
}
Esto podría funcionar, pero el MenuController se colocará justo en el centro horizontal de la celda. –