Как создать выпадающее меню - PullRequest
0 голосов
/ 02 сентября 2018

Как я могу создать подобное меню, используя swift? Пример * +1003 *

1 Ответ

0 голосов
/ 02 сентября 2018

Это alertController с actionSheet. Используйте этот метод в вашем действии кнопки, например.

func handleAlert()
  let alertController = UIAlertController(title: "Change Profile Photo", message: nil, preferredStyle: .actionSheet)
  //First action
  alertController.addAction(UIAlertAction(title: "Remove current photo", style: .destructive, handler: { (_) in
        // Your remove photo code here
    }))
  alertController.addAction(UIAlertAction(title: "Import From Facebook", style: .default, handler: { (_) in
        // Your import from facebook code here
    }))
  //Cancel action
  alertController.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))
  present(alertController, animated: true, completion: nil)
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...