iPhone sdk - UIImageView重叠问题
我有一个 UITableView,如附图所示。我在 UITableView 的自定义单元格中使用 UIImageView 并旋转一定程度。 UIImageView 中的图像根据其大小进行调整。问题是,一些图像重叠在下一个单元格的视图上。虽然 UIImageView 超出了单元格的边界,但我不希望图像重叠。有人帮助我摆脱这个问题。提前致谢。
I have a UITableView as shown in the attached image. I use a UIImageView in the custom cell of the UITableView and I rotate to some degrees. The images in the UIImageView are fit according to their size. The problem is, some of the images are overlapped on the view of next cell. Though the UIImageView exceeds the boundary of the cell, I do not want the image to be overlapped. Someone help me to come out of this problem. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为
UIImageView
设置属性masksToBounds: YES
。Set the property
masksToBounds: YES
for theUIImageView
.