Anatoly
Anatoly

Reputation: 5243

Is there ready solution or I need custom UIView?

I'm developing time manager for iOS and need to create something like on picture below. This is list of tasks for week.

Week/Day task list

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

Answers (3)

Vaibhav Tekam
Vaibhav Tekam

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

Gordon Dove
Gordon Dove

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

rakeshNS
rakeshNS

Reputation: 4257

You only need to add some UIImageview and UIButtons over UIView.

Upvotes: 1

Related Questions