1

It's hard to explain what i'm searching for, and not even sure if Apple will allow it (because of the guideline for human interface design), but is it possible to make a step by step "progress" bar in a UIToolbar? The image below will explain a lot. You can see the 1, 2, 3, 4 steps, preferably all buttons (so you can click a step back)

UIToolbar with steps

Any help? Or do i have to do it with images?

Thanks

Erik Terwan
  • 2,710
  • 19
  • 28

1 Answers1

1

Try to use a similar approach as the one here. Check BASequencecontrol. The source code is available in github.

enter image description here

iDev
  • 23,310
  • 7
  • 60
  • 85
  • Thanks, after all i decided to just go with a plain UISegmentedControl, because i had a pretty big part of my project already done. For the next project, i will keep BaseAppKit in my mind! – Erik Terwan Dec 08 '12 at 14:53
  • @Terwanerik, Yes that is a better design approach than this. Thanks for accepting. – iDev Dec 09 '12 at 00:34