Возможно создать UITableView, который появляется из угла Контроллера Представления - PullRequest
0 голосов
/ 17 мая 2018

Я хотел бы смоделировать табличное представление после того, как оно было найдено в приложении Todoist (см. Ниже), возможно ли сделать это без дополнительных каркасов?Если да, то как мне поступить? enter image description here

1 Ответ

0 голосов
/ 17 мая 2018

Вы можете создать контроллер представления с UITableView и представить его как UIPopoverPresentationController

let vc = UIViewController()

vc.modalPresentationStyle = .popover

vc.preferredContentSize = CGSize(width: 200, height: 200)

let popUp = vc.popoverPresentationController

popUp?.permittedArrowDirections = .up

popUp?.delegate = self

popUp?.sourceView = sender as! UIView  // here set the frame of the button that the arrow points to when popup is shown

present(vc, animated: true, completion: nil)

//

Внутри vc, который вы представляете, всплывающее окно делает его реализующимделегировать UIPopoverPresentationControllerDelegate и написать этот метод

func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle {
    return .none
}
...