There is way to remove separators between actions in UIAlert (actionSheet style)?
Asked
Active
Viewed 884 times
0
-
Highly unlikely. – luk2302 Mar 01 '18 at 14:32
-
1create custom view... – Arnab Mar 01 '18 at 14:48
-
Not possible with native alert you can use something already available or create something of your own – Harshal Bhavsar Mar 01 '18 at 15:08
-
iOS is not provide to change the design of `UIAlertView` . You need to make your own custom view for showing the alert . – Rashed Mar 01 '18 at 16:26
3 Answers
0
It's not possible to do it with the system-provided UIAlertView
.
However, have a look at this Swift-written repo. It may help you creating a custom alert.

fredpi
- 8,414
- 5
- 41
- 61
0
Sorry, but no:(
You can easily create your own following this or this tutorials.
I'm sure it will be useful experience for you!
Good luck!
EDIT: updated the links.

Tung Fam
- 7,899
- 4
- 56
- 63
-
The tutorial shows the native alert only and it doesn't answers question in any manner – Harshal Bhavsar Mar 02 '18 at 01:16
-
0
Don't add UIAlertAction, then there will be no separator. You can add button programmatically by adding subview.

matthias_h
- 11,356
- 9
- 22
- 40

Rohit Rohit
- 11
- 1