在Objective-C中,可以指定一个符合协议的类作为方法参数。例如,我可以有一个方法,只允许一个UIViewController符合UITableViewDataSource:
- (void)foo:(UIViewController<UITableViewDataSource> *)vc;
我找不到一种方法在Swift中做这个(也许是不可能的)。你可以使用func foo(obj:protocol< P1,P2>)指定多个协议,但是你怎么要求对象也是一个特定的类呢?
您可以将foo定义为通用函数,并使用类型约束来同时需要类和协议。
原文链接:https://www.f2er.com/swift/321296.htmlfunc foo<T: UIViewController where T: UITableViewDataSource>(vc: T) { // access UIViewController property let view = vc.view // call UITableViewDataSource method let sections = vc.numberOfSectionsInTableView?(tableView) }