MWPhotoBrowser
MWPhotoBrowser copied to clipboard
When I use a small picture occur a dislocation mistaken
When I use a 45*63 picture,it will offset to the lower right corner.but other situations is normal.
I'm having the same problem here, see this screen shot for example (taken on iPad 2 in portrait orientation, image size is 148x198):

After commenting out these two lines in MWZoomingScrollView it started working:
self.contentOffset = CGPointMake((boundsSize.width - imageSize.width * self.zoomScale) / 2.0,
(boundsSize.height - imageSize.height * self.zoomScale) / 2.0);
I don't fully understand why setting contentOffset messes things up here and this fix probably breaks something else I'm sure but it worked for me.