在Swift中使用CFNotificationCallback,或在Swift中使用@convention(c)块

前端之家收集整理的这篇文章主要介绍了在Swift中使用CFNotificationCallback,或在Swift中使用@convention(c)块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用(现在私有的)CTTelephonyCenterAddObserver C函数和CFNotificationCallback回调块来侦听CoreTelephony通知.

我的桥接头(外部私有C函数):

  1. #include <CoreFoundation/CoreFoundation.h>
  2.  
  3. #if __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. #pragma mark - API
  8.  
  9. /* This API is a mimic of CFNotificationCenter. */
  10.  
  11. CFNotificationCenterRef CTTelephonyCenterGetDefault();
  12. void CTTelephonyCenterAddObserver(CFNotificationCenterRef center,const void *observer,CFNotificationCallback callBack,CFStringRef name,const void *object,CFNotificationSuspensionBehavior suspensionBehavior);
  13. void CTTelephonyCenterRemoveObserver(CFNotificationCenterRef center,const void *object);
  14. void CTTelephonyCenterRemoveEveryObserver(CFNotificationCenterRef center,const void *observer);
  15.  
  16. void CTIndicatorsGetSignalStrength(long int *raw,long int *graded,long int *bars);
  17.  
  18. #pragma mark - Definitions
  19.  
  20. /* For use with the CoreTelephony notification system. */
  21. extern CFStringRef kCTIndicatoRSSignalStrengthNotification;
  22.  
  23. #if __cplusplus
  24. }
  25. #endif

我的Swift代码

  1. let callback: CFNotificationCallback = { (center: CFNotificationCenter?,observer: UnsafeRawPointer?,name: CFString?,object: UnsafeRawPointer?,info: CFDictionary?) -> Void in
  2. // ...
  3. }
  4.  
  5. CTTelephonyCenterAddObserver(CTTelephonyCenterGetDefault().takeUnretainedValue(),nil,callback,kCTIndicatoRSSignalStrengthNotification.takeUnretainedValue(),.coalesce)

但是,我无法获得我的完成变量的签名以匹配CFNotificationCallback typealias的要求.

06002

如何让@convention(c)闭包在Swift中很好地玩?

让编译器推断闭包的签名工作正常:
  1. let callback: CFNotificationCallback = { center,observer,name,object,info in
  2. //works fine
  3. }

试图在闭包声明中指定@convention(c)会出错:

  1. let callback: CFNotificationCallback = { @convention(c) (center: CFNotificationCenter?,info: CFDictionary?) -> Void in
  2. //Attribute can only be applied to types,not declarations.
  3. }

似乎正在发生的事情是,当您手动声明闭包的类型时,它会强制编译器使用该确切类型.但这在技术上是一个闭包声明而不是类型声明,因此不允许@convention属性.当允许编译器推断闭包的类型时(根据它所存储的变量的类型),它也可以推断出属性.

猜你在找的Swift相关文章