contentSize是scrollview可以滾動的區(qū)域,比如frame = (0 ,0 ,320 ,480) contentSize = (320 ,960),代表你的scrollview可以上下滾動蜜另,滾動區(qū)域?yàn)閒rame大小的兩倍。
contentOffset是scrollview當(dāng)前顯示區(qū)域頂點(diǎn)相對于frame頂點(diǎn)的偏移量嫡意,比如上個(gè)例子你拉到最下面举瑰,contentoffset就是(0 ,480),也就是y偏移了480
contentInset是scrollview的contentview的頂點(diǎn)相對于scrollview的位置蔬螟,例如你的contentInset = (0 ,100)此迅,那么你的contentview就是從scrollview的(0 ,100)開始顯示
另外UITableView是UIScrollView的子類,它們在上述屬性又有所不同旧巾,tabelview的contentsize是由它的下列方法共同實(shí)現(xiàn)的
- (NSInteger)numberOfSections;
- (NSInteger)numberOfRowsInSection:(NSInteger)section;
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;
它會自動計(jì)算所有的高度和來做為它的contentsize的height.