What class is referenced in the volume/mute button popup? Sorry for the awful question but I can’t seem to find it anywhere.
What class is referenced in the volume/mute button popup? Sorry for the awful question
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can simply create a UIView with a semi transparent black backgroundColor. Then set the
view.layer.cornerRadius = 8.0;(this will create rounded corners) and add whatever you would like to display within it to that view as non-opaque subviews with clear backgrounds.You can then add the newly created view to your top-most view and set the frame to center nicely and add some animation.
You need to add the following line in the header-file:
and also need add QuartzCore to your linked frameworks.