Linked Questions
22 questions linked to/from How to implement a pop-up dialog box in iOS?
5 votes
1 answer
24k views
Xcode - How to make a pop up menu [duplicate]
I would like to make a pop up menu in Xcode. How can I do it? I would like it to look nice and professional.
567 votes
36 answers
766k views
How would I create a UIAlertView in Swift?
I have been working to create a UIAlertView in Swift, but for some reason I can't get the statement right because I'm getting this error: Could not find an overload for 'init' that accepts the ...
153 votes
20 answers
152k views
Displaying a message in iOS which has the same functionality as Toast in Android
I need to know if there is any method in iOS which behaves like Toast messages in Android. That is, I need to display a message which is dismissed automatically after few seconds. This is similar to ...
75 votes
9 answers
62k views
UIPopoverPresentationController on iOS 8 iPhone
Does anyone know if UIPopoverPresentationController can be used to present popovers on iPhones? Wondering if Apple added this feature on iOS 8 in their attempt to create a more unified presentation ...
79 votes
6 answers
214k views
Present and dismiss modal view controller
Can anyone give me the example code that I can use to first present a modal view controller, then dismiss it? This is what I have been trying: NSLog(@"%@", blue.modalViewController); [blue ...
37 votes
19 answers
60k views
Android Toast equivalent in iOS
Does anyone know what the Java Toast equivalent of this iOS Objective C event would be in a Fragment? Below is a sample of what I have written in iOS. What I am looking for the same Alert in Java ...
36 votes
8 answers
43k views
iPhone popup menu like iPad popover?
How can i implement this popup menu in iphone app like a popover in ipad? EDIT: This is the best at moment: https://github.com/runway20/PopoverView
41 votes
1 answer
60k views
UIAlertView Button Action
How can I use two actions for UIButton click?I have a UIAlertView showing with two button.Play again and exit.Now i want to execute two method in the click event of these buttons.
53 votes
5 answers
36k views
What is the android.widget.Toast equivalent for iOS applications?
I have made Android application a few months ago. The Toast class is very useful for me. I do not need to consider the main Thread and place to show it. Anywhere I can show it and just leave that and ...
21 votes
7 answers
28k views
Creating iPhone Pop-up Menu Similar to Mail App Menu
I'd like to create a pop-up menu similar to the one found in the mail app when you want to reply to a message. I've seen this in more than one application so I wasn't sure if there was something ...
13 votes
13 answers
18k views
Android Toast in iPhone?
When I write Android apps, I love the Toast feature. Is there a way to get this kind of set and forget popup message in iPhone development using MonoTouch (C# .NET)?
9 votes
5 answers
15k views
How can I create a custom popup window for iPhone?
I want to create a custom popup window for iPhone which should look like this: What is the most correct way to implement this for iPhone and iPod devices?
5 votes
3 answers
2k views
How to create a small popup in iOS?
I'm looking for the simplest code in order to implement a small popup (NOT a full screen modal popup or alert view). I just need it to display some basic text inside the popup, then exit it when I ...
3 votes
1 answer
18k views
What is the equivalent of a SnackBar in Swift/iOS [closed]
I'm porting an Android application to iOS. Part of the user-interface is an Android Snackbar; a small box at the bottom of the screen alerting the user of something, while not being a full-fledged ...