Ken Reid
Ken Reid

Reputation: 609

Mac OSX & Xcode Image View

Thanks for reading!

Simple question I can't seem to find the answer to, what do you call this "splash screen" UI that appears when you press volume up, volume down, mute etc. on the Macbook Pro?

Also, could you link me to any documentation related to this type of UI in the Objective-C library? I plan to make it hold an image, darken the rest of the screen, and allow the user to control the position of this UI via coordinates send from iPhone. I could go more into detail but I don't want to overcomplicate this.

Example:

UIImage
(source: edmunn.co.uk)

Upvotes: 2

Views: 750

Answers (1)

epatel
epatel

Reputation: 46051

It is often called an Alert view or HUD (head-up-display).

You can find several implementations at github.

Like this one https://github.com/mobitar/MBAlertView

Upvotes: 2

Related Questions