An action sheet can be useful in displaying the options to the users. Launch the Action sheet in iOS using the UIKit’s UIAlertViewController class.
In this blog, we will explore how you can display the options to the users using the UIAlertViewController’s property Style.
Launch action sheet in iOS
If you want to perform multiple actions from one single button you can make an action sheet that will come up from the bottom of the screen.
You can dismiss the action sheet using the cancel action.
You have to set the style of cancel as “.cancel” and others have a “.normal” style.
The action sheet comes from the bottom of the iPhone. To launch on iPad you have to set the frame of that action sheet. A simple example using an action sheet in Swift is. shown below.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func confirmDelete(product:String){
let alert=UIAlertController(title:"title",message:"Are you sure you want to permanently delete ",preferredStyle:.actionSheet)
let DeleteAction=UIAlertAction(title:"Delete",style:.destructive,handler:Delete)
let CancelAction=UIAlertAction(title:"Cancel",style:.cancel,handler:cancel)
Proficient in designing and developing iOS applications for e-commerce and retail banking. Focused on building core app features that enhance functionality, user engagement, and seamless integration.
Be the first to comment.