Depth Page transform on iOS

前端 未结 6 1028
[愿得一人]
[愿得一人] 2020-12-15 07:03

I am trying to create a animation like of Facebook Menu Slide Down Animation of POP framework or exactly like of InShorts App. Android Documentation covers this..But cannot

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-15 07:36

    in my opinion UICollectionview and UICollectionViewLayout is better suited for such things. UITableView don't give you per scroll transforms and you would need to do all kinds dirty hacks.

    If you go with UICollectionview, what you looking for is -[UICollectionViewLayout layoutAttributesForElementsInRect:] and -[UICollectionViewLayout shouldInvalidateLayoutForBoundsChange:], everything else is a bit of math.

提交回复
热议问题