quattro_4 scribble

scribble 落書き (調べた事をただ落書きする)

NSScreencast Episode #75 A Tale of UIScrollView Customization

A Tale of UIScrollView Customization - NSScreencast

画面半分のTableViewが上下にスクロールする

  • UIScrollView
    • .frame.origin.y
    • .frame.size.height
    • self.tableView.tableHeaderView = self.filterView;
  • UIScrollViewDelegate
    • scrollViewDidScroll
      • MAX(0, frame.origin.y)
      • MIN(self.view.bounds.size.height, frame.size.height)
      • self.tableView.frame = frame;
      • self.tableView.contentOffset = CGPointZero; // reset content offset
    • scrollViewDidEndDecelerating
      • self.decelerating = NO;
    • self.outerScrollView =

とにかくアイデアとかにつまったら
take a break
って何度も言ってた