In my current app, a transaction-recording app, I am trying to have all input fields visible at once on the entry view. For one input, which is a simple list of mutually-exclusive options, the normal UIPickerView is simply too large. So, I'm trying out horizontal-scrolling widgets instead.
Currently, I create a UISegmentedControl with the options inside a UIScrollView to provide the horizontal scrolling. The segmented control has the perfect behavior I need: it looks standard, it has mutually-exclusive selection, and it's easy to work with. But to me it's an odd fit.
Here's a simulator screenshot of what I'm trying out. The UIScrollView extends from the left side to almost the right side; I'm leaving space for a disclosure button there.
What do you think? Appropriate use, or abuse? How stringent is Apple's review process on human interface guidelines?