gpt4 book ai didi

ios - 在 Swift 中将协议(protocol)类型作为参数传递

转载 作者:搜寻专家 更新时间:2023-10-30 22:00:28 24 4
gpt4 key购买 nike

在 Objective-C 中,我们可以(通过导入语言的运行时头文件)执行以下操作:

//Pass a service (usually an object) and ANY protocol
- (void)registerService:(id)service forProtocol:(Protocol *)protocol
{
//Grab the protocol's name (that's why we import runtime.h, it contains the protocol_getname mehod)
NSString *protocolName = [NSString stringWithUTF8String:protocol_getName(protocol)];

//If the object we passed does not conform to the protocol, inform and break
if (![service conformsToProtocol:protocol])
{
NSLog(@"Service: %@ does not conform to protocol: %@", service, protocolName);
return;
}

//Else add service in a collection (array, dictionary) for later use
self.services[protocolName] = service;
}

我在 obj-C 中将其用作“穷人的 IOC 容器”,这是一个用于注入(inject)依赖项的简单注册表。

//The interested party uses this method to obtain the dependency it needs by asking for the object that is registered as responsible for conforming to the Protocol parameter
- (id)serviceForProtocol:(Protocol *)protocol
{
id result;

NSString *protocolName = [NSString stringWithUTF8String:protocol_getName(protocol)];

//Look for the service that conforms to the protocol in the registry dictionary,
result = self.services[protocolName];

//if there is no object meeting the criteria, inform/alert
if (result == nil)
{
NSLog(@"No class registered for protocol: %@", protocolName);
}

//and return the result
return result;
}

试图在 Swift 中复制这种行为,我发现我们无法像在 obj-C 中那样访问该语言的等效“运行时”API(目前),并且可以理解,因为 swift 是一项正在进行的工作给人们这种访问权限无疑是有风险的。

但这也意味着我们不能再以相同的方式使用协议(protocol),即在任何协议(protocol)的意义上。

想到的第一个可能的解决方法是genericsAnywhere 的混合,但这对于某些东西来说感觉太多了以前很简单。

所以,我的问题是:在 Swift 中传递Protocol(如ANY Protocol)有哪些建议的解决方案?

编辑: 我使用 Swift 中引入的 Metatype 类型取得了一些成功,这在语言设计方面很有意义,但还没有(还)提供提供一个“字符串”表示的能力可用作字典中键的元类型。

这当然是可以随着语言的成熟而添加的功能。

最佳答案

你试过什么?

像这样的东西不起作用吗:

import Foundation

func registerService(service: NSObjectProtocol, forProtocol prot: Protocol) {
let protocolName = NSStringFromProtocol(prot)

if (!service.conformsToProtocol(prot)) {
println("Service: \(service) does not conform to protocol: \(protocolName)")
return
}

//...
}

关于ios - 在 Swift 中将协议(protocol)类型作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25290301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com