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?
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.
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.
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];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With