美文网首页list
TableView相关frame

TableView相关frame

作者: 沈正方 | 来源:发表于2016-09-19 13:22 被阅读84次

什么是TableView的内容content?

  • cell
  • tableViewHeaderView & tableViewFooterView
  • sectionHeader & sectionFooter
Content

什么是内容的高度contentSizeHeight?

  • (cell + tableViewHeaderView & tableViewFooterView + sectionHeader & sectionFooter ).height

什么是内容的偏移量contentOffset?

  • (frame的顶部 - content的顶部) = 内容的偏移量
contentOffset(一)
contentOffset(二)

什么是内边距contentInset?

  • 内容周围的间距
  • 内容周围到屏幕边框的距离

contentInset

添加子控件,设置frame.frame指的是?

  • frame :以父控件内容左上角为坐标原点
  • frame.size.height : 矩形框(屏幕框)的高度

Frame & Bounds

  • frame : 以父控件内容左上角为坐标原点
  • bounds : 以自己内容的左上角为坐标原点

相关文章

网友评论

    本文标题:TableView相关frame

    本文链接:https://www.haomeiwen.com/subject/iafnettx.html