The part of the UI you are talking about (the top with the image) is not a UIWebView. It is there own custom UIView of some sort showing a teaser of the content. The bottom faded out part is a UIWebView of the original article.
I imagine the way the implemented it would be to have a tap gesture recognizer on the image and when the tap occurs animating the scaled down version of the image to the full size of the screen.
处理主食的守则可能照此办理(非常简单):
-(void)_imageTapOccured:(UITapGestureRecognizer *)gesture {
[UIView animateWithDuration:2.0 animations:^{
imageView.frame = CGRectMake(0.0f, 0.0f, widthOfScreen, heightOfScreen);
}];
}
Then they will also likely handle the tap to change the picture back to the original size:
-(void)_imageTapAtFullScreen:(UITapGestureRecognizer *)gesture {
[UIView animateWithDuration:2.0 animations:^{
imageView.frame = originalRectSize;
}];
}