How are the side headers in the Calendar app when viewing the view of the week (landscape)?

When you rotate your iPhone in the calendar app, you are given a pleasant viewing of the week. It consists of headings for the days at the top and "side headers" for the time on the side. These side headers behave exactly like the headers in the UITableView, but they are on the side. Does anyone know how to make these "side headers" in a UIScrollView? Side headers should stay in place when scrolling horizontally, but still scroll when scrolling vertically.

I have a situation where I need to have headers on the top and side of the table / scrollview. I have not been able to find anything similar.

+3


source to share


2 answers


Most likely it is UICollectionView

. Check out the WWDC 2012 sessions for them, very informative



+1


source


This project can help you get the behavior you want.



https://github.com/Xenofex/MultiColumnTableViewForiOS

+2


source







All Articles