vote up 2 vote down star
5

How should I go about creating a UI similar to the Springboard (home screen) on the iPhone? I'd like a grid of evenly spaced buttons with images where I can respond to the button tap.

Is the UITable a good fit? Should I use a plain UIView and position the icons manually in DrawRect? Is there an alternative that will automatically evenly space the buttons, allow reorganization, and adjust the layout according to the iPhone orientation?

I come from a C#/Winforms background and am just now starting iPhone development on the Open Toolchain with 2.2.1 headers.

flag
Maybe you should provide more domain info. And also tag the question with the framework you're using for development. – Slavo Feb 3 at 17:58
"domain info"? Like... purpose of the app? It's going to be a grid of icons that, when pressed, will play a sound. Which frameworks are there? I'm new to this, not sure what all the names are. How do I determine which framework I'm using? – Nick VanderPyle Feb 3 at 18:06

2 Answers

vote up 1 vote down check

You need to add your icons (which are UIViews of some sort) as subviews of your "Springboard" view. No custom drawing needed, and a UITable is thh absolute wrong way to go. You just need to do the math to place them correctly (by setting their frame).

link|flag
Manual math route? I had hoped there was an easier way. Oh well. Thanks! I'm not smart about the UITable. Why is it not a good fit? – Nick VanderPyle Feb 3 at 19:59
UITable is great for lists. Each object in its own row. A UIView, though, allows you to layout your own grid, with views wherever you want them. – August Feb 3 at 20:53
Makes sense. From a .NET perspective, the UITable is more like a GridView than a TableLayout. – Nick VanderPyle Feb 3 at 21:10
On the iPhone, a UITableView only has one column. Always. So it's ill suited to a grid. It's more of a fancy outlined list view. – Squeegy Feb 4 at 16:36
vote up 1 vote down

@August: I took your advice and added the UIButtons as subviews of the UIView rather than look further into the UITable. Thanks!

Hopefully the code below will help to jumpstart someone else. I've statically placed 4 buttons in a grid. It shouldn't be much harder to place any number of buttons according to the parent UIView's bounds and orientation.

@implementation IconView
- (id)initWithFrame:(struct CGRect)windowRect{
  self = [super initWithFrame: windowRect];
  if (self != nil){
    for(int i = 0; i < 4; i++){
      buttons[i] = [self buildButton];
      [self addSubview: buttons[i]];
    }
    [self reInit];
  }
  return self;
}
- (UIButton *) buildButton{
  UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 60, 60)];
  [button setBackgroundImage: [[UIImage imageNamed:@"icon.png"] stretchableImageWithLeftCapWidth:60 topCapHeight:0] forState:UIControlStateNormal];
  return [button autorelease];
}
- (void)reInit{
  CGRect rect;
  rect = buttons[0].frame;
  rect.origin = CGPointMake(5, 5);
  buttons[0].frame = rect;

  rect = buttons[1].frame;
  rect.origin = CGPointMake(70, 5);
  buttons[1].frame = rect;

  rect = buttons[2].frame;
  rect.origin = CGPointMake(5, 70);
  buttons[2].frame = rect;

  rect = buttons[3].frame;
  rect.origin = CGPointMake(70, 70);
  buttons[3].frame = rect;
}
@end
link|flag
What is "buttons"? How did you get a collection of UIButton's? – George Jul 10 at 2:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.