我很难将此转换为我的swift项目。提前谢谢!!!
+ (void)getResortsWithState:(NSString *)state andCompletion:(void(^)(NSArray *array))complete
{
....
}
最佳答案
static func getResortsWithState(state: String, completion: ([AnyObject]) ->() )
或者如果您知道数组中表达式的类型(我假设:
Resort
):static func getResortsWithState(state: String, completion: ([Resort]) ->() )
关于objective-c - 如何在Swift中声明此方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33444595/