I was wondering if Apple provides standard controls for the up/down arrow keys for the toolbar? All the other familiar buttons are present in Interface Builder, but not the arrow keys.

Is there a way to show them programmatically?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no public built-in control to display such a button. You can easily enough create your own, though, with a UISegmentedControl and
momentaryset to YES (put it in the toolbar using[[UIBarButtonItem alloc] initWithCustomView:...], of course).You can probably use the Unicode characters U+25B2 for ▲ and U+25BC for ▼, or you can use appropriate images.