Expanda UIImageView para tela cheia no UITableViewCell

eu tenho umUIImageView dentro de umUITableViewCell e quiser expandi-lo para preencher a tela inteira, configurei meuUIGestureRecognizer e estou usando esse código para expandir o quadro:

[UIView animateWithDuration:1.0 animations:^{
        [self.ImageView setFrame:[[UIScreen mainScreen] applicationFrame]];
}];

No entanto, oUIImageView será expandido apenas para preencher oUITableViewCell e não preenche a tela inteira.

Qualquer ajuda seria muito apreciada.

questionAnswers(2)

yourAnswerToTheQuestion