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
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.