Reputation: 5243
I'm developing time manager for iOS and need to create something like on picture below. This is list of tasks for week.
As I understand I need to create custom UIView to implement this design, am I right? Maybe there is ready library which I can to use?
Thank you in advance. Anatoly.
Upvotes: 0
Views: 93
Reputation: 2344
Go for custom. That is best!
Meanwhile have a look here, if you can find something helpful. There are some custom controls with the source code too for cocoa.
http://www.cocoacontrols.com/controls
Upvotes: 1
Reputation: 2577
I've not really looked at the collections view stuff in iOS 6 yet, but I would think that might be a good match. ( I think that it's existence is not NDA, but further details would be).
I don't think there is anything to directly support this kind of layout in iOS 5, maybe you could use 6 UITableViews for the central section.
Upvotes: 1