Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我使用了three20 库的photoViewController。照片详细视图中的照片是重叠的。具体来说,如果有三张照片,第一张和第三张看起来不错,但第二张照片与第一张重叠。
有人可以帮忙吗?
提前谢谢。
TTPhotoView.m 的第 135 行是 self.contentMode = UIViewContentModeScaleAspectFill;
它应该是 self.contentMode = UIViewContentModeScaleAspectFit;
更改为 YES:
self.clipsToBounds = YES;
文件 TTPhotoView.m 第 63 行