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
相关推荐
初级代码游戏3 小时前
iOS开发 SwiftUI 15:手势 拖动 缩放 旋转
ios·swiftui·swift
蒹葭玉树5 小时前
【C++上岸】C++常见面试题目--操作系统篇(第三十期)
c++·面试·risc-v
cyforkk5 小时前
16、Java 基础硬核复习:网络编程的核心逻辑与面试考点
java·网络·面试
森之鸟5 小时前
iOS云打包之Shorebird
ios
GuokLiu6 小时前
260203-OpenWebUI-在Windows上和RHEL上部署Caddy的步骤+在iPhone上操作的步骤
windows·ios·iphone
Bella的成长园地16 小时前
面试中关于 c++ async 的高频面试问题有哪些?
c++·面试
Abona17 小时前
C语言嵌入式全栈Demo
linux·c语言·面试
她说..21 小时前
策略模式+工厂模式实现审批流(面试问答版)
java·后端·spring·面试·springboot·策略模式·javaee
2501_915921431 天前
傻瓜式 HTTPS 抓包,简单抓取iOS设备数据
android·网络协议·ios·小程序·https·uni-app·iphone
七禾页丫1 天前
面试记录14 上位机软件工程师
面试·职场和发展