Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does iOS supports OptionsMenu in navigation bar button like Android [closed]

Tags:

ios

swift

I want to when I click on navigation bar button, it will expand a list option menu for me to handle each item in it. Does iOS supports it? And how to do it in swift?

enter image description here

like image 926
Khuong Avatar asked Oct 18 '22 20:10

Khuong


1 Answers

Using popover that is a good candidate for you: How to present popover or display a popover in Swift. Also, you can create custom UIView by yourself.

like image 60
phuongle Avatar answered Dec 02 '22 14:12

phuongle