私が見たところ、このエラーを解決する最良の方法は次のとおりです。
引数を取らない呼び出しに渡される引数
使用することになります
do {try ...} and catch {...}
しかし、このコードでそれを実装することは不可能のようです!
@IBAction func onTapButton(sender: AnyObject) {
btnFromNib.animate(1, completion: { () -> () in
var myTabbarController = self.storyboard?.instantiateInitialViewController("myTabbarController") as! UITabBarController
var appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
appDelegate.window?.rootViewController = myTabbarController
myTabbarController.transitioningDelegate = self
self.presentViewController(myTabbarController, animated: true, completion: nil)
})
}