Requirement:
iPad application:
Show custom controls in a list, controls are like "Select File", "Image Edit", "Video Edit", "Radio Group", "Checkbox", "Textbox with header", "Panel", "Tabs", "Signature".
Right now i manage custom controls in a UITableView
.
Each controls has properties (enble, hidden, editable, secure, color, font, text etc.). Properties can be change by select control from list (tap on row of UITableView
), And it will open a property inspector view related to specific control.
Challenge:
Its working perfectly till i have single control for a row. Now i have a requirement to group this controls and display in a single row.
Its difficult to manage a group of controls in a row. Which is better approach to follow?
Use
UITableView
add group of controls in this and then addUITableView
as a cellUse of
UIView
UICollectionView