我有一个名为“Home”的视图控制器,我想调用它的一个方法,称为myFunction()
。
let home = Home() as! UIViewController
home.myFunction()
这似乎不起作用。为什么呢?
答案 0 :(得分:6)
如果Home是您的rootViewController
,那么您可以通过AppDelegate方法调用animateStuff
方法:
if let viewController = self.window?.rootViewController? as? Home {
viewController.animateStuff()
}
如果Home
不是您的rootViewContoller
,那么您必须检查presentedView
控制器是否为Home
,然后调用其方法:
if let viewController = self.window?.rootViewController.presentedViewController as? Home {
viewController.animateStuff()
}
最后看起来你的animateStuff方法首先应该将按钮转换为其初始状态
func animateStuff(){
let optionsAnimateStuff = UIViewAnimationOptions.Repeat | UIViewAnimationOptions.Autoreverse | UIViewAnimationOptions.AllowUserInteraction
self.buttonPlay.transform = CGAffineTransformMakeScale(1.0, 1.0)
UIView.animateWithDuration(1.0, delay: 3.0, options:
optionsAnimateStuff, animations: {
self.buttonPlay.transform = CGAffineTransformMakeScale(1.13, 1.13)
}, completion: { finished in
})
}