在 Xcode 10
上进行归档时出现分段错误注意:
我的代码:
typealias ResponseBlock<T> = (_ sender: T) -> Void
我正在整个项目中使用它,例如:
var callback: ResponseBlock<AnyObject>?
在Xcode 10上存档时出错:
用法:
var refreshCells: ResponseBlock<[IndexPath]>?
viewModel.refreshCells = {indexPathList in
self.collectionView.reloadItems(at: indexPathList)
}