You must create a custom UIButtonone that will handle the entire screen. Then add your preview on top of this button. Then, when the user hits beyond the subtitle, they will click the button.
For example, make a button as follows:
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
[button addTarget:self action:@selector(yourhidemethod:) forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"" forState:UIControlStateNormal];
button.frame = self.view.frame;
[self.view addSubview:button];
(where yourhidemethod:is the name of the method that removes your subview.) Then add your subview on top of it.
. , , , . :
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint touchPoint = [touch locationInView:self];
}