#selector的参数不能引用属性

时间:2016-04-03 02:00:30

标签: swift uiactivityviewcontroller

目标是将以下条件更新为Swift 2.2语法,该语法建议使用#selector or explicitly constructing a Selector

if activityViewController.respondsToSelector("popoverPresentationController") {

}

但是,使用以下作为替换失败并生成错误Argument of #selector cannot refer to a property

if activityViewController.respondsToSelector(#selector(popoverPresentationController)) {

}

使用#selector实现此检查的正确方法是什么?

1 个答案:

答案 0 :(得分:2)

您可以使用以下内容:

if activityViewController.respondsToSelector(Selector("popoverPresentationController")) {

}

或者,如果您只定位iOS

if #available(iOS 8.0, *) {
    // You can use the property like this
    activityViewController.popoverPresentationController?.sourceView = sourceView
} else {

}

或者,如果您的代码不仅限于iOS

#if os(iOS)
    if #available(iOS 8.0, *) {
        activityViewController.popoverPresentationController?.sourceView = sourceView
    } else {

    }
#endif