在Swift中按协议查找

前端之家收集整理的这篇文章主要介绍了在Swift中按协议查找前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 Swift中将协议作为参数传递?

在Objective-C中,我可以这样做:

id <CurrentUserContex> userContex = [ServiceLocator locate:@protocol(CurrentUserContex)];

服务定位器:

+ (id)locate:(id)objectType

编辑

在Qbyte回答尝试使用后:

ServiceLocator.locate(CurrentUserContex.self)

但我得到’CurrentUserContex.Protocol’没有确认协议’AnyObject’

所以我尝试过:

ServiceLocator.locate(CurrentUserContex.self as! AnyObject)

但后来我得到:

Could not cast value of type 'ApplicationName.CurrentUserContex.Protocol' (0x7fec15e52348) to 'Swift.AnyObject' (0x7fec15d3d4f8).
如果CurrentUserContex是协议本身的名称,我建议使用它:
ServiceLocator.locate(CurrentUserContex.self)

如果CurrentUserContex是一个类型是协议使用的变量:

ServiceLocator.locate(CurrentUserContex)

我希望这能解决你的问题

原文链接:https://www.f2er.com/swift/319569.html

猜你在找的Swift相关文章