UIPickerView with UIButtons? - iphone

I can't seem to find it anywhere, I don't know if its a pre-built object apple offer or if people custom build them.
When in an iPhone app you tap a button and then up it slides, a view which looks like a UIPickerView in visual style but has a list of buttons on it.
What is this, how could I make one? Also, on iPad, similarly, the popover view with a list of buttons. Thanks.

Are you looking for UIActionSheet ?

Related

iPhone app Button style like "add to homescreen" button

i'm new in iphone app developing,
and i just wanted to create a buttonbar like this on the left screenshot.
http://www.internet-fuer-architekten.de/files/iphone_app-simulation2.png
What kind of buttons are these?
The only buttons i can find in xcode are the "Round Rect buttons" and the "Toolbar Buttons". But both of them do differ to the buttons on the screenshot.
I saw this Buttons in many apps on my iPhone, so i thought they must be Buttons from IOS.
Does anybody know, how to get this buttons?
Thanks, guys.
The left screenshot shows an UIActionSheet. You can use this class to make similar action sheet popups, but if you'd like to use that button style outside of an UIActionSheet class, you'll have to create a custom UIButton with background image.

UIView tab bar on top, like HTML on iPhone view

I'm developing a Hotel reservation iPhone application.
I tab view that I mention below image. So I don't know how to search it even. :(
So does any one knows about how to get it to our application I mean Is their any controller to this. Or else how to code this. (Is it html coding??)
Note : I am using Xcode 4.2 and story board. :)
Looks like you want to use UISegmented Controls with custom background, and then create subviews that will switch when you hit the "details" / "Diner Reviews" buttons.
Here's a custom iOS tabbar control similar to what you've drawn
http://cocoacontrols.com/platforms/ios/controls/bhtabbar

How do I show a small option view on clicking bar button item?

I have a requirement to pop up a small option-view on clicking bar button item, similar to this image.
How can I achieve this? Any tutorial or link is highly appreciated.
I'm not sure this is available on iPhone but I know that on iPad UIPopoverController it looks so.
Apple Documentation
You can find source code here to create PopoverController on iPhone !
You need to create an UIView and set for backgound you image. In this new view you can add UIButtons to let the user to select an option.

How do I center UIBarButtonItem with custom look?

Alright, so I have a TableView in one of my Views in my iPhone app. I'm using a UINavigationController, so using that I created the UIToolBar at the bottom of the table. Works great. However, I want the items in the toolbar to resemble how the Facebook app has them:
Not only would I like the Buttons (I will have only 2) to resemble those. (They connect when touching another button), but I really want to show the user what "Tab" they are on. In the image above, it is obvious to the user they are on the Wall. When they touch "Info", it becomes darkened and the user knows where they are. Does anyone know how they did it so my app may also have clear navigation?
What you have on a picture is standard UISegmentControl with UISegmentedControlStyleBar style - you can use it.
Just use a UISegmentedControl like they did

How to add an「i」button like the Stocks application in iPhone?

I want to add an「i」button on the top right in the navigationbar, just like the one in the Stocks application. Does iPhone SDK has this built-in button? I looked up the document but couldn't find any. Thanks a lot.
Sure, this is a standard UIButton with a type of info light. You can set it up in IB. However, you can't add it to your Navigation Bar, since nav bars can only have bordered buttons. The simple solution is to create it manually and it via code using [UIBarButtonItem initWithCustomView:...]