Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Information Button

On a number of iPhone applications I'm seeing a little blue circular button that, when clicked on, displays information about the application. Is this something that is built into the iOS SDK, or is it simply a custom button with a custom image?

like image 528
Randolph Levant Avatar asked Feb 21 '12 03:02

Randolph Levant


People also ask

Where is the info button on the iPhone?

It will appear at the bottom, below the photo, to the left of the trash icon. The Info is only available for photos that have been saved to the Photos Library, not for photos in Shared Albums.

What is an iOS button?

It is a control that enables the user to interact with the application. It is used to trigger the events performed by the user. It executes the custom code in response to user interactions. class UIButton : UIControl.


1 Answers

You can make an info button in Interface Builder by placing a button (a Rounded Button) and changing its type into dark or light info button.

You can also crate an info button programmatically like this:

UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoDark];
like image 101
sch Avatar answered Sep 22 '22 14:09

sch