swift – #selector的参数不能引用属性

前端之家收集整理的这篇文章主要介绍了swift – #selector的参数不能引用属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目标是将以下条件更新为 Swift 2.2语法,该语法建议使用#selector或显式构建Selector.
  1. if activityViewController.respondsToSelector("popoverPresentationController") {
  2.  
  3. }

但是,使用以下作为替换失败并生成错误,说#selector的参数不能引用属性

  1. if activityViewController.respondsToSelector(#selector(popoverPresentationController)) {
  2.  
  3. }

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

您可以使用以下内容
  1. if activityViewController.respondsToSelector(Selector("popoverPresentationController")) {
  2.  
  3. }

或者,如果您只针对iOS

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

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

  1. #if os(iOS)
  2. if #available(iOS 8.0,*) {
  3. activityViewController.popoverPresentationController?.sourceView = sourceView
  4. } else {
  5.  
  6. }
  7. #endif

猜你在找的Swift相关文章