Swift可重复赋值的闭包属性

问题

开发中肯定有遇到过将外界传入的回调闭包保存起来,待内部的某个异步事件完成后,统一回调并清空这个闭包数组的场景,这里有个简单的事例

swift 复制代码
class Vehicle {}
enum VehicleManager {
 
    private static var loadClosures: [([Vehicle], Bool) -> Void] = [] 
    private static var isLoading = false

    static func loadList(_ completion: (([Vehicle], Bool) -> Void)? = nil) {
        if isLoading {
            loadClosures.appendIfNonNil(completion)
            return
        } 
        isLoading = true 
        loadClosures.appendIfNonNil(completion)

        AIPManger.loadVehicle { res in
            switch res {
            case .success(let models):
                onDidFetch(models, true)
            case .failure: 
                onDidFetch([], false)
            }
        }
    }

    private static func onDidFetch(_ models: [Vehicle], _ success: Bool) {
        isLoading = false
        let closures = loadClosures 
        loadClosures = [] 
        for c in closures { 
            c(models, success) 
        } 
    } 
}

怎么在不借助任何的数据结构的情况下也能保存外部传入的闭包参数呢?

解决方案

以下是一种解决方案

swift 复制代码
class Vehicle {}
enum VehicleManager {
    private static var loadClosure: (([Vehicle], Bool) -> Void)?
    private static var isLoading = false

    private static func stash(_ completion: (([Vehicle], Bool) -> Void)?) {
        guard let cmp = completion else { return }
        if let oldVal = loadClosure {
            loadClosure = { arg1, arg2 in
                oldVal(arg1, arg2)
                cmp(arg1, arg2)
            }
        } else {
            loadClosure = cmp
        }
    }

    static func loadList(_ completion: (([Vehicle], Bool) -> Void)? = nil) {
        stash(completion)
        if isLoading { return }
        isLoading = true
        AIPManger.loadVehicle { res in
            isLoading = false
            let closure = loadClosure
            loadClosure = nil
            switch res {
            case .success(let models):
                closure?(models, true)
            case .failure:
                closure?([], false)
            }
        }
    }
}

仔细观察会发现stash方法是对loadClosure属性的一层包装,而这恰好是PropertyWrapper所要解决的,不太了解PropertyWrapper可以移步Swift 最佳实践之 Property Wrapper

swift 复制代码
@propertyWrapper
public struct Param2Closure<T, U> {
    public typealias Closure = (T, U) -> Void
    private var closure: Closure?
    
    public init() {}
    
    public mutating func reset() {
        closure = nil
    }
    public mutating func callAndReset(_ arg1: T, _ arg2: U) {
        closure?(arg1, arg2)
        closure = nil
    }
    
    public var wrappedValue: Closure? {
        get { closure }
        set {
            guard let val = newValue else { return }
            if let oldVal = closure {
                closure = { arg1, arg2 in
                    oldVal(arg1, arg2)
                    val(arg1, arg2)
                }
            } else {
                closure = val
            }
        }
    }
}

使用该PropertyWrapper后的事例代码

swift 复制代码
class Vehicle {}
enum VehicleManager {
    @Param2Closure
    private static var loadClosure: (([Vehicle], Bool) -> Void)?
    private static var isLoading = false
    static func loadList(_ completion: (([Vehicle], Bool) -> Void)? = nil) {
        loadClosure = completion
        if isLoading { return }
        isLoading = true
        AIPManger.loadVehicle { res in
            switch res {
            case .success(let models):
                _loadClosure.callAndReset(models, true)
            case .failure:
                _loadClosure.callAndReset(models, false)
            }
            isLoading = false
        }
    }
}

简洁明了了很多,后续有类似需求,一个PropertyWrapper就可以搞定。

后话

Param2Closure属性包装器已收录在本人编写的SwifterKnife当中,同时还包括只有一个参数Param1Closure和无参数VoidClosure版本的。

使用Swift开发有两年多时间,该库积累了很多本人在开发当中常用的方法、扩展、工具类、常见问题的解决方案,致力于写出更高效更符合swift风格的代码,日常维护更新是在develop分支,不定期合并到master分支,欢迎读者提出宝贵意见和建议

小小Tips

若有意使用该库,建议

pod 'SwifterKnife', :git => 'https://github.com/CoderLouie/SwifterKnife.git', :branch => 'develop'

相关推荐
瓜子三百克2 天前
值类型大小与内存分配
swift·内存分配
杂雾无尘4 天前
Swift 5.9 新特性揭秘:非复制类型的安全与高效
ios·swift·apple
Daniel_Coder4 天前
iOS Widget 开发-7:TimelineProvider 机制全解析:构建未来时间线
ios·swift·widget
Swift社区4 天前
Swift 图论实战:DFS 算法解锁 LeetCode 323 连通分量个数
算法·swift·图论
Daniel_Coder4 天前
iOS Widget 开发-3:Widget 的种类与尺寸(主屏、锁屏、灵动岛)
ios·swift·widget
大熊猫侯佩4 天前
Swift 6.2:江湖再掀惊涛浪,新功出世震四方
swift·apple·wwdc
大熊猫侯佩4 天前
WWDC 25 风云再起:SwiftUI 7 Charts 心法从 2D 到 3D 的华丽蜕变
swiftui·swift·wwdc
杂雾无尘5 天前
SwiftUI 新手必读:如何用纯 SwiftUI 在应用中实现分段控制?
ios·swift·apple
开发者如是说5 天前
言叶是如何对文件进行端到端加密的
android·kotlin·swift
Daniel_Coder5 天前
iOS Widget 开发-5:Widget 与主 App 的通信原理:App Group、UserDefaults 与文件共享
ios·swift·widget