func presentClick()
{
print(“present Click”)
// present视图控制器
let nextVC = PresentViewController()
let nextNav = UINavigationController(rootViewController: nextVC)
/*
视图控制器翻转效果
由下向上推出(默认模式) CoverVertical
水平翻转 FlipHorizontal
淡入淡出 CrossDissolve
翻页效果 PartialCurl
注意:如果有导航视图控制器时,翻转效果设置在导航视图控制器;没有时则设置在视图控制器。
*/
nextNav.modalTransitionStyle = UIModalTransitionStyle.partialCurl
self.present(nextNav, animated: true, completion: nil)
}