TimelineView
TimelineView copied to clipboard
TimelineView functions like a UITableView, but allows you to position cells anywhere using a custom frame (CGRect). This allows you to have irregular spacing, overlapping cells, etc...
Need to add a `TimelineScaleView` for the `TimelineView`. This would probably be a fixed view with a drawRect that draws different parts of the scale depending on the scroll position....
The protocol definition of TimelineViewDelegate currently looks like this: ``` objc @protocol TimelineViewDelegate ... @end ``` Because TimelineView inherits from UIScrollView, and UIScrollView already has a property 'delegate', you require...
I'm using the example you proovide and sometimes when scrolling (different speeds) some cells change the "z" they had originally making them to appear in front other cells or under,...