如何在表格视图中调整图像大小?

时间:2015-04-29 09:40:43

标签: ios objective-c uitableview uiimageview resize

如何在表格中的图片中执行某些操作? 我在想我可以添加带有图像和更多自定义单元格的表格视图。enter image description here 我的问题是:如何通过这样拖动来调整图像大小:enter image description here

2 个答案:

答案 0 :(得分:0)

秘诀是将imageView contentMode设置为aspectFill,以便在imageView帧更改时图像自动展开。

这需要对您的视图约束进行一些设置,但有些引用:

  1. http://blog.domesticcat.com.au/ios/2014/03/19/creating-parallax-effect-on-uiscrollview-using-simple-constraints/
  2. how to expand image on UITableView like in CNN app
  3. 我使用上面第一个链接中描述的方法设置了自己的方法。

答案 1 :(得分:0)

您可以在滚动视图中使用原型单元格和UIImageview来放大和缩小功能。对于表视图单元的扩展行为,您可以参考以下链接:

https://github.com/xerxes235/HVTableView