Hi all,
I want to create a UITableView that will have more than text in it. Specifically I want each cell to contain possibly several widgets side by side.
In other GUI systems, there is usually a container widget/control called a List that will place widgets adjacently either vertically or horizontally.
For instance, a horizontal List of three widgets might look like this
Is there such a thing in iOS? Or do I need to use a UIView and position the sub-widgets myself?
Thanks.
I want to create a UITableView that will have more than text in it. Specifically I want each cell to contain possibly several widgets side by side.
In other GUI systems, there is usually a container widget/control called a List that will place widgets adjacently either vertically or horizontally.
For instance, a horizontal List of three widgets might look like this
Code:
[Label 1][Button 1][Button 2]
Is there such a thing in iOS? Or do I need to use a UIView and position the sub-widgets myself?
Thanks.