您的位置:首页 > 移动开发 > Swift

获取UIView的视图控制器(Swift)

2016-03-26 11:29 495 查看
UIView继承自UIResponder,可以利用UIResponder的nextResponder()方法返回该视图的控制器,以下是官方文档对该方法的描述:

The UIResponder class does not store or set the next responder automatically, instead returningnil by default. Subclasses must override
this method to set the next responder.UIView implements this method by returning theUIViewController
object that manages it (if it has one) or its superview (if it doesn’t);UIViewController
implements the method by returning its view’s superview;UIWindow returns the application object, andUIApplication returns
nil.

因为我要经常用到该方法,所以我直接扩展到UIView里面去了:

extension UIView {
func parentViewController() -> UIViewController? {
for (var next = self.superview; next != nil; next = next?.superview) {
let ctr = next?.nextResponder()
if (ctr is UIViewController) {
return ctr as? UIViewController
}
}
return nil
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: