iOS Information Button iOS Information Button xcode xcode

iOS Information Button


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];


It's in the Interface Builder. Place a Round-Rect button and change the type to "Info Light" or "Info Dark"

Then you simply link it to creating a new subview in which you place all the information about the app or whatever else you would like to put there.


  • Yes, it is built into the SDK.
  • Place a button in interface builder and choose info dark and infolight from the button types in the attributes inspector.

Is this the button?

screenshot of view

It is available in dark gray and light gray only.. if it is not.. Please post a link to which button you are referring to.