0

I have a UIToolbar with two UIBarButtonItems ("previous" and "next"), which I use as an inputAccessoryView for my UITextFields. These buttons cycle through the text fields.

I have seen in some places that the buttons are actually a single split button. How would I achieve this?

Here's an image:

Previous-Next Split Button

Macro206
  • 2,143
  • 3
  • 19
  • 25

1 Answers1

1

Look at the UISegmented Control button. If that's not it, then post an image of what button you want so we can better help you.

HM1
  • 1,684
  • 2
  • 18
  • 25
  • 1
    Yep... that a Segmented Control button. See: http://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/UIElementGuidelines/UIElementGuidelines.html#//apple_ref/doc/uid/TP40006556-CH13-SW27 – HM1 Apr 12 '13 at 19:50