contentoffset
是指tableview内容距离原点的距离,内容包扩cell+header+footer 不包括conteninset
navigation透明
tableviewVC会自动为tableview设置内边距(contentinset.top = 64)
此时contentoffset 为-64
设置
self.automaticallyAdjustsScrollViewInsets = NO
tableview会从屏幕的左上角为原点 进行计算 ,tableview.contentoffset 相当于y轴,高于(0,0)点以上的为正.
navigation 不透明
self.automaticallyAdjustsScrollViewInsets = YES
此时以navigation的左下角为原点,此时内边距contentinset.top = 0 contentoffset = 0