Combine 响应式编程框架的详细讲解和实现方法

Combine 响应式编程框架的详细讲解和实现方法

什么是 Combine?

Combine 是 Apple 在 iOS 13+ 推出的响应式编程框架 ,用于处理 异步事件流(如网络请求、UI输入、通知等) ,替代回调、KVO 和 NotificationCenter 等传统写法。

示例一:基本使用

swift 复制代码
import Combine

var cancellables = Set<AnyCancellable>()
let publisher = Just("Hello Combine")
publisher
    .sink(receiveCompletion: { completion in
        print("完成状态: \(completion)")
    }, receiveValue: { value in
        print("接收到的值: \(value)")
    })
    .store(in: &cancellables)

示例二:使用 URLSession 数据请求

swift 复制代码
import Foundation
import Combine

struct Post: Codable {
    let id: Int
    let title: String
}

var cancellables = Set<AnyCancellable>()

let url = URL(string: "https://jsonplaceholder.typicode.com/posts/1")!

URLSession.shared.dataTaskPublisher(for: url)
    .map(\.data)
    .decode(type: Post.self, decoder: JSONDecoder())
    .sink(receiveCompletion: { completion in
        switch completion {
        case .finished:
            print("请求完成")
        case .failure(let error):
            print("错误: \(error)")
        }
    }, receiveValue: { post in
        print("标题: \(post.title)")
    })
    .store(in: &cancellables)

@Published + ViewModel 绑定(MVVM)

swift 复制代码
class ViewModel: ObservableObject {
    @Published var searchText: String = ""
    @Published var result: String = ""

    private var cancellables = Set<AnyCancellable>()

    init() {
        $searchText
            .debounce(for: .milliseconds(300), scheduler: RunLoop.main)
            .removeDuplicates()
            .map { "结果为:\($0.uppercased())" }
            .assign(to: &$result)
    }
}

绑定在 SwiftUI 中使用:

swift 复制代码
struct ContentView: View {
    @StateObject var viewModel = ViewModel()

    var body: some View {
        VStack {
            TextField("输入", text: $viewModel.searchText)
            Text(viewModel.result)
        }
        .padding()
    }
}

🎯 使用场景总结

🚫 注意事项

  • Combine 仅适用于 iOS 13+、macOS 10.15+****
  • 链式调用中别忘记 .store(in:) 否则会立即释放

🎯 CombineRxSwift 的对比和选择

  • 使用 SwiftUI 构建 App:优先使用 Combine****
  • 使用 UIKit 构建 App:优先使用 RxSwift****
  • 全新项目、仅支持 iOS 13+:Combine 更轻量****
  • 已使用 RxSwift 或需兼容 iOS 12 及更低版本:继续用 RxSwift
相关推荐
用户114818678948413 小时前
Vite项目中的SVG雪碧图
前端·面试
晴殇i15 小时前
CommonJS 与 ES6 模块引入的区别详解
前端·javascript·面试
青青家的小灰灰15 小时前
金三银四面试官最想听的 React 答案:虚拟 DOM、Hooks 陷阱与大型列表优化
前端·react.js·面试
ssshooter16 小时前
Tauri 踩坑 appLink 修改后闪退
前端·ios·rust
zone773918 小时前
001:LangChain的LCEL语法学习
人工智能·后端·面试
zone773918 小时前
001:简单 RAG 入门
后端·python·面试
前端Hardy18 小时前
告别 !important:现代 CSS 层叠控制指南,90% 的样式冲突其实不用它也能解
前端·vue.js·面试
前端Hardy18 小时前
Vue 3 性能优化的 5 个隐藏技巧,第 4 个连老手都未必知道
前端·vue.js·面试
Lee川19 小时前
从回调地狱到同步之美:JavaScript异步编程的演进之路
javascript·面试
二流小码农20 小时前
鸿蒙开发:上传一张参考图片便可实现页面功能
android·ios·harmonyos