tableview分割线

ios cell展示可滑动的图片

青春壹個敷衍的年華 提交于 2020-01-05 02:03:42
需求: 点击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 ];

IOS——中级篇 --TableView以及Cell

余生长醉 提交于 2019-12-17 18:47:50
// 设置 tableView 的行高 self .tableView.rowHeight = 100 ; // 设置 tableView 分割线的样式 // UITableViewCellSeparatorStyleNone 不显示分割线 // UITableViewCellSeparatorStyleSingleLine 显示分割线 ( 默认 ) self .tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; self . tableView . allowsSelection = NO ; // 不允许选中 // 设置分割线的颜色 self .tableView.separatorColor = [UIColor orangeColor]; // 让没有内容单元格不显示 [ 小技巧 ] self . tableView . tableFooterView = [[ UIView alloc ] init ]; // 设置 (top,left,bottom,right)[top 与 bottom 无效 ] self .tableView.separatorInset = UIEdgeInsetsMake( 0 , 10 , 0 , 10 ); 在stroyborud 加载cell