0

I design one menu with InterfaceBuilder by xcode5, I am using UIView as menu container, but there are too many menu items, can I make the UIView height to be more large? so I can put these menu items down.

enter image description here

why
  • 23,923
  • 29
  • 97
  • 142
  • 1
    possible duplicate of [xcode 4.5, view size not editable in interface builder](http://stackoverflow.com/questions/12653786/xcode-4-5-view-size-not-editable-in-interface-builder) – matt Jan 17 '14 at 04:06
  • 1
    See http://stackoverflow.com/a/12653825/341994 And you might want to use a UIScrollView. See for example http://stackoverflow.com/questions/21151624/add-ui-elements-to-uiscrollview – matt Jan 17 '14 at 04:08

1 Answers1

1

You can try set the Simulated Metrics size to freeform and set view height in the Size Inspector enter image description here

but i suggest you to use UITableView and customize cell, it's more suitable for a scroll menu container.

johnMa
  • 3,291
  • 24
  • 37