ios cell展示可滑动的图片
需求: 点击cell上的图片.图片以原图显示出来,可以放大或缩小.再次点击图片移除图片显示原来界面.(和QQ空间看图片类似) 点击图片实现效果: 1. 自定义一个 UITableView ( KDImageDetailTableView ) 在方法( - ( id )initWithFrame:( CGRect )frame style:( UITableViewStyle )style )里面设置代理对象手势,tableView的背景色,隐藏指示器等 - ( id )initWithFrame:( CGRect )frame style:( UITableViewStyle )style { self = [ super initWithFrame :frame style :style]; if ( self ) { // Initialization code // 解决手势冲突 ( 代理对象必须是 UIScrollView 类的对象 ) self . panGestureRecognizer . delegate = self ; // 设置代理对象 self . dataSource = self ; self . delegate = self ; // 设置背景颜色 self . backgroundColor = [ UIColor blackColor ];