# Combine Framework: Programación Reactiva en Swift > Domina Combine para gestionar flujos de datos asíncronos en Swift: Publishers, Subscribers, Operators y patrones avanzados para aplicaciones iOS. - Published: 2026-02-18 - Updated: 2026-04-28 - Author: SharpSkill - Tags: combine, swift, ios, reactive, async - Reading time: 14 min --- La programación reactiva transforma la forma de gestionar eventos asíncronos y flujos de datos en aplicaciones iOS. Combine, el framework nativo de Apple, ofrece un enfoque declarativo y type-safe para orquestar pipelines de datos complejos. Esta guía recorre los conceptos fundamentales hasta llegar a los patrones listos para producción. > **¿Por qué Combine en lugar de RxSwift?** > > Combine viene integrado en iOS 13+, ofrece mejor rendimiento gracias a las optimizaciones de Apple e integra perfectamente con SwiftUI. Sin dependencias externas que mantener. ## Conceptos básicos de Combine Combine se construye sobre tres conceptos clave: los **Publishers** que emiten valores, los **Subscribers** que los reciben y los **Operators** que transforman los datos entre ambos. Esta arquitectura permite construir pipelines de datos reactivos y componibles. ### Publisher: la fuente de datos Un Publisher es un tipo capaz de emitir una secuencia de valores a lo largo del tiempo. Cada Publisher declara dos tipos asociados: el tipo del valor emitido (`Output`) y el tipo de error posible (`Failure`). Así se crean distintos tipos de Publishers: ```swift // PublisherBasics.swift import Combine // Just: emits a single value then completes // Useful for converting a simple value to a Publisher let singleValue = Just("Hello Combine") // CurrentValueSubject: stores and emits the current value // Perfect for representing state that changes over time let counter = CurrentValueSubject(0) // PassthroughSubject: emits values without storing them // Ideal for one-time events (taps, notifications) let buttonTaps = PassthroughSubject() // Future: emits a single value asynchronously // Wraps an async operation that returns a result let asyncOperation = Future { promise in // Simulate a network call DispatchQueue.global().asyncAfter(deadline: .now() + 1) { promise(.success("Data loaded")) } } ``` El tipo `Never` para los errores significa que el Publisher nunca puede fallar. Es una garantía a nivel de compilación que simplifica el código de gestión de errores. ### Subscriber: recibir los valores Un Subscriber se suscribe a un Publisher para recibir sus valores. El método `sink` es la forma más habitual de crear un Subscriber. Recibe dos closures: una para los errores o la finalización y otra para cada valor recibido: ```swift // SubscriberBasics.swift import Combine // Variable to store subscriptions // Without this reference, the subscription would be immediately cancelled var cancellables = Set() let publisher = ["Swift", "Combine", "iOS"].publisher // sink() creates a Subscriber that receives values publisher .sink( // Called when the Publisher completes or fails receiveCompletion: { completion in switch completion { case .finished: print("✅ Completed successfully") case .failure(let error): print("❌ Error: \(error)") } }, // Called for each emitted value receiveValue: { value in print("Received: \(value)") } ) // store() keeps a reference to the subscription .store(in: &cancellables) // Output: // Received: Swift // Received: Combine // Received: iOS // ✅ Completed successfully ``` > **Cuidado con las fugas de memoria** > > Guarda siempre el `AnyCancellable` que devuelve `sink()`. Sin una referencia, la suscripción se cancela automáticamente y no se recibe ningún valor. ## Transformar datos con Operators Los Operators son el núcleo de Combine. Permiten transformar, filtrar y combinar flujos de datos de forma declarativa. Cada Operator devuelve un nuevo Publisher, lo que permite encadenarlos. ### Operators de transformación esenciales Los Operators de transformación modifican cada valor emitido. `map` transforma los valores, `flatMap` aplana los Publishers anidados y `compactMap` filtra los valores nil: ```swift // TransformOperators.swift import Combine var cancellables = Set() // map: transforms each value // Equivalent to map on arrays [1, 2, 3, 4, 5].publisher .map { $0 * 2 } // Multiply each number by 2 .sink { print("Doubled: \($0)") } .store(in: &cancellables) // Output: 2, 4, 6, 8, 10 // compactMap: transforms AND filters out nil // Useful for optional conversions ["1", "two", "3", "four", "5"].publisher .compactMap { Int($0) } // Convert to Int, ignore failures .sink { print("Valid number: \($0)") } .store(in: &cancellables) // Output: 1, 3, 5 // flatMap: flattens nested Publishers // Essential for chaining async operations struct User { let id: Int; let name: String } func fetchUser(id: Int) -> AnyPublisher { // Simulate an API call Just(User(id: id, name: "User \(id)")) .delay(for: .milliseconds(100), scheduler: RunLoop.main) .eraseToAnyPublisher() } [1, 2, 3].publisher .flatMap { id in fetchUser(id: id) } // Each ID becomes an API call .sink { user in print("User: \(user.name)") } .store(in: &cancellables) ``` ### Operators de filtrado Los Operators de filtrado controlan qué valores recorren el pipeline. Son fundamentales para evitar procesamiento innecesario y optimizar el rendimiento: ```swift // FilterOperators.swift import Combine var cancellables = Set() let numbers = [1, 2, 2, 3, 3, 3, 4, 5, 5].publisher // filter: keeps only values that satisfy the condition numbers .filter { $0 > 2 } // Keep only numbers > 2 .sink { print("Filtered: \($0)") } .store(in: &cancellables) // Output: 3, 3, 3, 4, 5, 5 // removeDuplicates: removes consecutive identical values numbers .removeDuplicates() // Eliminate consecutive duplicates .sink { print("Without duplicates: \($0)") } .store(in: &cancellables) // Output: 1, 2, 3, 4, 5 // debounce: waits for a pause before emitting // Perfect for real-time search let searchText = PassthroughSubject() searchText .debounce(for: .milliseconds(300), scheduler: RunLoop.main) .removeDuplicates() // Ignore if text hasn't changed .sink { query in print("Search: \(query)") // Launch API call here } .store(in: &cancellables) // Simulate rapid typing searchText.send("S") searchText.send("Sw") searchText.send("Swi") searchText.send("Swift") // Only "Swift" is emitted after 300ms ``` ## Combinar varios Publishers Las aplicaciones reales suelen necesitar combinar varias fuentes de datos. Combine ofrece varios Operators para orquestar estos flujos múltiples. ### CombineLatest y Zip `combineLatest` emite cada vez que cualquier Publisher emite, combinando con los últimos valores de los demás. `zip` espera a que todos los Publishers emitan antes de combinar: ```swift // CombiningPublishers.swift import Combine var cancellables = Set() // Simulate a form with validation let email = CurrentValueSubject("") let password = CurrentValueSubject("") // combineLatest: combines the latest values from each Publisher // Emits on every change from either source Publishers.CombineLatest(email, password) .map { email, password in // Validate that email contains @ and password > 6 chars let isEmailValid = email.contains("@") let isPasswordValid = password.count >= 6 return isEmailValid && isPasswordValid } .sink { isFormValid in print("Form valid: \(isFormValid)") } .store(in: &cancellables) email.send("user@example.com") // false (password empty) password.send("123456") // true (both are valid) // zip: waits for one value from each Publisher before emitting // Useful for synchronizing parallel operations let firstAPI = PassthroughSubject() let secondAPI = PassthroughSubject() Publishers.Zip(firstAPI, secondAPI) .sink { stringValue, intValue in print("Received pair: \(stringValue), \(intValue)") } .store(in: &cancellables) firstAPI.send("Hello") // No emission, waiting for secondAPI secondAPI.send(42) // Emits: ("Hello", 42) firstAPI.send("World") // No emission, waiting for secondAPI secondAPI.send(100) // Emits: ("World", 100) ``` ### Merge para unificar flujos `merge` combina varios Publishers del mismo tipo en un único flujo. Los valores llegan en el orden de emisión, sin importar qué Publisher los envió: ```swift // MergePublishers.swift import Combine var cancellables = Set() // Multiple user notification sources let pushNotifications = PassthroughSubject() let localNotifications = PassthroughSubject() let inAppMessages = PassthroughSubject() // Merge unifies all streams into one Publishers.Merge3(pushNotifications, localNotifications, inAppMessages) .sink { message in // Handle all notifications the same way print("📬 Notification: \(message)") } .store(in: &cancellables) pushNotifications.send("New message") // 📬 Notification: New message localNotifications.send("Reminder: meeting") // 📬 Notification: Reminder: meeting inAppMessages.send("Welcome!") // 📬 Notification: Welcome! ``` ## Gestión de errores en Combine La gestión de errores está integrada en el núcleo de Combine. El tipo `Failure` de los Publishers permite al compilador verificar que todos los errores se gestionen. ### Estrategias de recuperación Combine ofrece varios Operators para gestionar los errores: `catch` para sustituir por otro Publisher, `retry` para reintentar y `replaceError` para un valor por defecto: ```swift // ErrorHandling.swift import Combine var cancellables = Set() enum APIError: Error { case networkError case invalidResponse case serverError(Int) } // Simulate an API call that can fail func fetchData() -> AnyPublisher { Fail(error: APIError.networkError) .eraseToAnyPublisher() } // retry: retries N times before propagating the error fetchData() .retry(3) // Try up to 3 times .catch { error -> Just in // catch: replaces the error with a fallback Publisher print("Error after 3 attempts: \(error)") return Just("Cached data") // Fallback value } .sink( receiveCompletion: { _ in }, receiveValue: { print("Result: \($0)") } ) .store(in: &cancellables) // replaceError: replaces any error with a fixed value // Simpler than catch when only a default value is needed fetchData() .replaceError(with: "Error - default value") .sink { print("With fallback: \($0)") } .store(in: &cancellables) ``` > **Never frente a Error** > > Usa `setFailureType(to:)` para convertir un Publisher `Never` en uno que pueda fallar, y `replaceError(with:)` o `catch` para hacer lo contrario. ## Patrón MVVM con Combine Combine se integra de forma natural con el patrón MVVM (Model-View-ViewModel). El ViewModel expone Publishers que la View observa, creando un binding reactivo entre los datos y la interfaz. ### ViewModel reactivo completo Este es un ejemplo de ViewModel para una lista de usuarios con búsqueda, carga y gestión de errores: ```swift // UserListViewModel.swift import Combine import Foundation // Data model struct User: Codable, Identifiable { let id: Int let name: String let email: String } // ViewModel with reactive state final class UserListViewModel: ObservableObject { // MARK: - Published Properties (observed by SwiftUI) @Published var users: [User] = [] // User list @Published var searchQuery: String = "" // Search text @Published var isLoading: Bool = false // Loading state @Published var errorMessage: String? // Optional error message // MARK: - Private Properties private var cancellables = Set() private let userService: UserServiceProtocol // MARK: - Computed Properties // Filters users based on search query var filteredUsers: [User] { guard !searchQuery.isEmpty else { return users } return users.filter { $0.name.localizedCaseInsensitiveContains(searchQuery) } } // MARK: - Initialization init(userService: UserServiceProtocol = UserService()) { self.userService = userService setupBindings() } // MARK: - Private Methods private func setupBindings() { // Observe searchQuery changes // debounce prevents too frequent calls $searchQuery .debounce(for: .milliseconds(300), scheduler: RunLoop.main) .removeDuplicates() .sink { [weak self] query in // Server-side search logic if needed print("Search updated: \(query)") } .store(in: &cancellables) } // MARK: - Public Methods func loadUsers() { isLoading = true errorMessage = nil userService.fetchUsers() .receive(on: DispatchQueue.main) // Ensure UI updates on main thread .sink( receiveCompletion: { [weak self] completion in self?.isLoading = false if case .failure(let error) = completion { self?.errorMessage = error.localizedDescription } }, receiveValue: { [weak self] users in self?.users = users } ) .store(in: &cancellables) } } ``` ### Service con Combine y URLSession URLSession integra Combine de forma nativa mediante `dataTaskPublisher`. Así se crea un servicio de red reutilizable: ```swift // UserService.swift import Combine import Foundation protocol UserServiceProtocol { func fetchUsers() -> AnyPublisher<[User], Error> } final class UserService: UserServiceProtocol { private let baseURL = URL(string: "https://api.example.com")! private let session: URLSession private let decoder: JSONDecoder init(session: URLSession = .shared) { self.session = session self.decoder = JSONDecoder() decoder.keyDecodingStrategy = .convertFromSnakeCase } func fetchUsers() -> AnyPublisher<[User], Error> { let url = baseURL.appendingPathComponent("users") return session.dataTaskPublisher(for: url) // Check HTTP status code .tryMap { data, response in guard let httpResponse = response as? HTTPURLResponse else { throw URLError(.badServerResponse) } guard 200..<300 ~= httpResponse.statusCode else { throw URLError(.badServerResponse) } return data } // Decode JSON to Swift model .decode(type: [User].self, decoder: decoder) // Erase concrete type to return AnyPublisher .eraseToAnyPublisher() } } ``` ## Integración con SwiftUI Combine y SwiftUI forman un dúo potente. Las propiedades `@Published` de un `ObservableObject` activan automáticamente las actualizaciones de la vista. ### Vista SwiftUI con ViewModel Combine Así se conecta el ViewModel a una vista SwiftUI: ```swift // UserListView.swift import SwiftUI struct UserListView: View { // StateObject: creates and owns the ViewModel @StateObject private var viewModel = UserListViewModel() var body: some View { NavigationStack { Group { if viewModel.isLoading { // Centered loading indicator ProgressView("Loading...") } else if let error = viewModel.errorMessage { // Error view with retry button VStack(spacing: 16) { Text("Error: \(error)") .foregroundStyle(.red) Button("Retry") { viewModel.loadUsers() } } } else { // User list List(viewModel.filteredUsers) { user in UserRowView(user: user) } } } .navigationTitle("Users") .searchable(text: $viewModel.searchQuery) // Direct binding .onAppear { viewModel.loadUsers() // Load on first appearance } } } } struct UserRowView: View { let user: User var body: some View { VStack(alignment: .leading, spacing: 4) { Text(user.name) .font(.headline) Text(user.email) .font(.subheadline) .foregroundStyle(.secondary) } .padding(.vertical, 4) } } ``` ## Patrones avanzados ### Cancelación y limpieza automática Gestionar el ciclo de vida de las suscripciones es clave para evitar fugas de memoria. El patrón `cancellables` con `AnyCancellable` garantiza una limpieza automática: ```swift // CancellationPatterns.swift import Combine final class DataManager { // Set of cancellables: automatically cancelled on destruction private var cancellables = Set() // Individual cancellable for fine-grained control private var currentRequest: AnyCancellable? func startPolling() { // Timer that emits every 5 seconds Timer.publish(every: 5, on: .main, in: .common) .autoconnect() // Starts automatically .sink { [weak self] _ in self?.fetchLatestData() } .store(in: &cancellables) } func fetchLatestData() { // Cancel the previous request if it exists currentRequest?.cancel() currentRequest = URLSession.shared .dataTaskPublisher(for: URL(string: "https://api.example.com/data")!) .map(\.data) .decode(type: [String].self, decoder: JSONDecoder()) .replaceError(with: []) .receive(on: DispatchQueue.main) .sink { data in print("Data received: \(data)") } } deinit { // All cancellables are automatically cancelled print("DataManager destroyed, subscriptions cancelled") } } ``` ### Schedulers para los hilos de ejecución Los Schedulers controlan en qué hilo se ejecutan las operaciones. Usa `subscribe(on:)` para el trabajo en segundo plano y `receive(on:)` para las actualizaciones de la UI: ```swift // SchedulerPatterns.swift import Combine import Foundation var cancellables = Set() func loadAndProcessData() -> AnyPublisher { URLSession.shared.dataTaskPublisher(for: apiURL) // Perform parsing on a background thread .subscribe(on: DispatchQueue.global(qos: .userInitiated)) .map(\.data) .decode(type: RawData.self, decoder: JSONDecoder()) // Heavy processing on background thread .map { rawData in // This expensive operation runs in the background processData(rawData) } // Return to main thread for UI .receive(on: DispatchQueue.main) .eraseToAnyPublisher() } ``` ## Conclusión Combine ofrece un enfoque potente y declarativo para gestionar flujos de datos asíncronos en aplicaciones iOS. Puntos clave: ✅ Los **Publishers** emiten valores a lo largo del tiempo ✅ Los **Subscribers** reciben y procesan esos valores ✅ Los **Operators** transforman y combinan los flujos ✅ `AnyCancellable` gestiona el ciclo de vida de las suscripciones ✅ `@Published` con SwiftUI crea bindings reactivos automáticos ✅ Los **Schedulers** controlan el threading para un rendimiento óptimo Dominar Combine permite construir aplicaciones iOS robustas, mantenibles y reactivas. Su integración nativa con SwiftUI lo convierte en una herramienta indispensable para el desarrollo iOS moderno. --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/es/blog/ios/combine-reactive-programming-swift