ios-networking
dpearson2699/swift-ios-skills
Modern iOS/macOS networking with URLSession, async/await, and structured concurrency.
What is ios-networking?
Build and review networking code for iOS 15+ apps using URLSession with async/await and Swift 6.3 patterns. Use this skill when working with REST APIs, file transfers, WebSocket connections, pagination, retry logic, caching, background transfers, or network error handling—no third-party dependencies required.
- Handle data requests, downloads, and uploads with async/await URLSession APIs
- Validate HTTP responses and decode JSON with Codable
- Stream responses and track progress with AsyncBytes
- Build protocol-based API clients with dependency injection
- Implement request middleware for authentication, logging, and cross-cutting concerns
- Configure URLSession with timeouts, caching, and transport security
How to install ios-networking
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill ios-networkingHow to use ios-networking
- 1.Review the Core URLSession async/await section for your use case (data, download, upload, or streaming)
- 2.Validate HTTP status codes before decoding responses
- 3.Use the protocol-based API client pattern for testability and dependency injection
- 4.Apply RequestMiddleware for cross-cutting concerns like authentication
- 5.Configure URLSession with appropriate timeouts and cache policies for your app
- 6.Test with injected URLSession instances instead of URLSession.shared
Use cases
- Building REST API clients with modern async/await patterns
- Downloading large files to disk without loading into memory
- Implementing token refresh flows and 401 error recovery
- Adding request middleware for authentication headers and logging
- Streaming server-sent events or line-delimited data
- iOS/macOS app developers
- Backend engineers reviewing Swift networking code
- Teams migrating from callback-based to async/await patterns
- Developers building testable API client architectures
ios-networking FAQ
Use async/await for foreground data, upload, download, and streaming work. Use delegate-based APIs only for background URLSession transfers, which require task/delegate patterns so the system can deliver events after suspension or relaunch.
URLSession does not throw for 4xx/5xx responses—it only throws for transport-level failures. Always validate the HTTP status code manually: guard (200..<300).contains(httpResponse.statusCode) else { throw NetworkError.httpError(...) }
Define a protocol-based client that accepts injected URLSession, JSONDecoder, and RequestMiddleware. This lets you swap implementations in tests without mocking URLSession directly.
Catch NetworkError.httpError with statusCode 401, refresh the token via your TokenStore, and retry the request once. The skill includes a complete token refresh flow pattern.
Production apps should use a custom, injected URLSession configured with URLSessionConfiguration for timeouts, cache policy, waitsForConnectivity, and delegate handling. URLSession.shared is only suitable for simple cases.
Full instructions (SKILL.md)
Source of truth, from dpearson2699/swift-ios-skills.
name: ios-networking description: "Build, review, or improve networking code in iOS/macOS apps using URLSession with async/await, structured concurrency, and modern Swift patterns. Use when working with REST APIs, downloading files, uploading data, WebSocket connections, pagination, retry logic, request middleware, caching, background transfers, or network reachability monitoring. Also use when handling HTTP requests, API clients, network error handling, or data fetching in Swift apps."
iOS Networking
Modern networking patterns for iOS 26+ using URLSession with async/await and structured concurrency. All examples target Swift 6.3. No third-party dependencies required -- URLSession covers the vast majority of networking needs.
Contents
- Core URLSession async/await
- API Client Architecture
- Error Handling
- Pagination
- Network Reachability
- Configuring URLSession
- App Transport Security (ATS)
- Common Mistakes
- Review Checklist
- References
Core URLSession async/await
URLSession gained native async/await overloads in iOS 15. Prefer these for foreground data, upload, download, and streaming work. Background URLSession transfers are the main exception: they still use task/delegate APIs so the system can deliver events after suspension or relaunch.
Data Requests
// Basic GET
let (data, response) = try await URLSession.shared.data(from: url)
// With a configured URLRequest
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.httpBody = try JSONEncoder().encode(payload)
request.timeoutInterval = 30
request.cachePolicy = .reloadIgnoringLocalCacheData
let (data, response) = try await URLSession.shared.data(for: request)
Response Validation
Always validate the HTTP status code before decoding. URLSession does not throw for 4xx/5xx responses -- it only throws for transport-level failures.
guard let httpResponse = response as? HTTPURLResponse else {
throw NetworkError.invalidResponse
}
guard (200..<300).contains(httpResponse.statusCode) else {
throw NetworkError.httpError(
statusCode: httpResponse.statusCode,
data: data
)
}
JSON Decoding with Codable
func fetch<T: Decodable>(_ type: T.Type, from url: URL) async throws -> T {
let (data, response) = try await URLSession.shared.data(from: url)
guard let httpResponse = response as? HTTPURLResponse,
(200..<300).contains(httpResponse.statusCode) else {
throw NetworkError.invalidResponse
}
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .iso8601
decoder.keyDecodingStrategy = .convertFromSnakeCase
return try decoder.decode(T.self, from: data)
}
Downloads and Uploads
Use download(for:) for large files -- it streams to disk instead of
loading the entire payload into memory.
// Download to a temporary file
let (localURL, response) = try await URLSession.shared.download(for: request)
// Move or copy the returned temporary file promptly.
let destination = documentsDirectory.appendingPathComponent("file.zip")
try FileManager.default.moveItem(at: localURL, to: destination)
For delegate-based URLSessionDownloadDelegate, move or open the temporary
file before urlSession(_:downloadTask:didFinishDownloadingTo:) returns.
Background sessions are delegate-driven transfer queues. Use task creation
APIs such as downloadTask(with:) and file-backed uploadTask(with:fromFile:),
then handle URLSessionDelegate / task delegate callbacks. Do not use async
convenience APIs such as data(for:), download(for:), or upload(for:) as
the durable background-session pattern.
// Upload data
let (data, response) = try await URLSession.shared.upload(for: request, from: bodyData)
// Upload from file
let (data, response) = try await URLSession.shared.upload(for: request, fromFile: fileURL)
Streaming with AsyncBytes
Use bytes(for:) for streaming responses, progress tracking, or
line-delimited data (e.g., server-sent events).
let (bytes, response) = try await URLSession.shared.bytes(for: request)
for try await line in bytes.lines {
// Process each line as it arrives (e.g., SSE stream)
handleEvent(line)
}
API Client Architecture
Protocol-Based Client
Define a protocol for testability. This lets you swap implementations in tests without mocking URLSession directly.
protocol APIClientProtocol: Sendable {
func fetch<T: Decodable & Sendable>(
_ type: T.Type,
endpoint: Endpoint
) async throws -> T
func send<T: Decodable & Sendable>(
_ type: T.Type,
endpoint: Endpoint,
body: some Encodable & Sendable
) async throws -> T
}
struct Endpoint: Sendable {
let path: String
var method: String = "GET"
var queryItems: [URLQueryItem] = []
var headers: [String: String] = [:]
func url(relativeTo baseURL: URL) -> URL {
guard let components = URLComponents(
url: baseURL.appendingPathComponent(path),
resolvingAgainstBaseURL: true
) else {
preconditionFailure("Invalid URL components for path: \(path)")
}
var mutableComponents = components
if !queryItems.isEmpty {
mutableComponents.queryItems = queryItems
}
guard let url = mutableComponents.url else {
preconditionFailure("Failed to construct URL from components")
}
return url
}
}
The client accepts a baseURL, optional custom URLSession, JSONDecoder,
and an array of RequestMiddleware interceptors. Each method builds a
URLRequest from the endpoint, applies middleware, executes the request,
validates the status code, and decodes the result. See
references/urlsession-patterns.md for the complete APIClient implementation
with convenience methods, request builder, and test setup.
Production clients should receive an injected, configured URLSession instead
of calling URLSession.shared internally. Configure URLSessionConfiguration
with request/resource timeouts, cache policy or URLCache,
waitsForConnectivity, data-cost policy, and delegates when authentication
challenges, redirects, metrics, pinning, or background transfer handling matter.
Lightweight Closure-Based Client
For apps using the MV pattern, use closure-based clients for testability and SwiftUI preview support. See references/lightweight-clients.md for the full pattern (struct of async closures, injected via init).
Request Middleware / Interceptors
Middleware transforms requests before they are sent. Use this for authentication, logging, analytics headers, and similar cross-cutting concerns.
protocol RequestMiddleware: Sendable {
func prepare(_ request: URLRequest) async throws -> URLRequest
}
struct AuthMiddleware: RequestMiddleware {
let tokenProvider: @Sendable () async throws -> String
func prepare(_ request: URLRequest) async throws -> URLRequest {
var request = request
let token = try await tokenProvider()
request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
return request
}
}
Token Refresh Flow
Handle 401 responses by refreshing the token and retrying once.
func fetchWithTokenRefresh<T: Decodable & Sendable>(
_ type: T.Type,
endpoint: Endpoint,
tokenStore: TokenStore
) async throws -> T {
do {
return try await fetch(type, endpoint: endpoint)
} catch NetworkError.httpError(statusCode: 401, _) {
try await tokenStore.refreshToken()
return try await fetch(type, endpoint: endpoint)
}
}
Error Handling
Structured Error Types
enum NetworkError: Error, Sendable {
case invalidResponse
case httpError(statusCode: Int, data: Data)
case decodingFailed(Error)
case noConnection
case timedOut
case cancelled
/// Map a URLError to a typed NetworkError
static func from(_ urlError: URLError) -> NetworkError {
switch urlError.code {
case .notConnectedToInternet, .networkConnectionLost:
return .noConnection
case .timedOut:
return .timedOut
case .cancelled:
return .cancelled
default:
return .httpError(statusCode: -1, data: Data())
}
}
}
Key URLError Cases
| URLError Code | Meaning | Action |
|---|---|---|
.notConnectedToInternet | Device offline | Show offline UI, queue for retry |
.networkConnectionLost | Connection dropped mid-request | Retry with backoff |
.timedOut | Server did not respond in time | Retry once, then show error |
.cancelled | Task was cancelled | No action needed; do not show error |
.cannotFindHost | DNS failure | Check URL, show error |
.secureConnectionFailed | TLS handshake failed | Check cert pinning, ATS config |
.userAuthenticationRequired | Authentication required to access a resource | Trigger auth flow |
Decoding Server Error Bodies
struct APIErrorResponse: Decodable, Sendable {
let code: String
let message: String
}
func decodeAPIError(from data: Data) -> APIErrorResponse? {
try? JSONDecoder().decode(APIErrorResponse.self, from: data)
}
// Usage in catch block
catch NetworkError.httpError(let statusCode, let data) {
if let apiError = decodeAPIError(from: data) {
showError("Server error: \(apiError.message)")
} else {
showError("HTTP \(statusCode)")
}
}
Retry with Exponential Backoff
Use structured concurrency for retries. Respect task cancellation between attempts. Skip retries for cancellation and 4xx client errors (except 429).
func withRetry<T: Sendable>(
maxAttempts: Int = 3,
initialDelay: Duration = .seconds(1),
operation: @Sendable () async throws -> T
) async throws -> T {
var lastError: Error?
for attempt in 0..<maxAttempts {
do {
return try await operation()
} catch {
lastError = error
if error is CancellationError { throw error }
if case NetworkError.httpError(let code, _) = error,
(400..<500).contains(code), code != 429 { throw error }
if attempt < maxAttempts - 1 {
try await Task.sleep(for: initialDelay * Int(pow(2.0, Double(attempt))))
}
}
}
throw lastError!
}
Pagination
Build cursor-based or offset-based pagination with AsyncSequence.
Always check Task.isCancelled between pages. See
references/urlsession-patterns.md for complete CursorPaginator and
offset-based implementations.
Network Reachability
Use NWPathMonitor from the Network framework -- not third-party
Reachability libraries. On current OS targets it conforms to AsyncSequence;
wrap pathUpdateHandler only for compatibility or custom projections.
import Network
func observeNetworkStatus() async {
let monitor = NWPathMonitor()
for await path in monitor {
handle(path.status)
}
}
Check path.isExpensive (cellular) and path.isConstrained (Low Data
Mode) to adapt behavior (reduce image quality, skip prefetching).
Use Network.framework for low-level TCP, UDP, listeners, Bonjour, path
monitoring, or WebSocket protocol work -- not ordinary REST APIs. For iOS 26
NetworkConnection<QUIC>, openStream(...) and inboundStreams(...) are
async throwing APIs; see references/network-framework.md#quic-multiplexed-streams.
Configuring URLSession
Create a configured session for production code. URLSession.shared is
acceptable only for simple, one-off requests.
let configuration = URLSessionConfiguration.default
configuration.timeoutIntervalForRequest = 30
configuration.timeoutIntervalForResource = 300
configuration.waitsForConnectivity = true
configuration.requestCachePolicy = .returnCacheDataElseLoad
configuration.httpAdditionalHeaders = [
"Accept": "application/json",
"Accept-Language": Locale.preferredLanguages.first ?? "en"
]
let session = URLSession(configuration: configuration)
waitsForConnectivity = true is valuable -- it makes the session wait for
a network path instead of failing immediately when offline. Combine with
urlSession(_:taskIsWaitingForConnectivity:) delegate callback for UI
feedback.
App Transport Security (ATS)
ATS enforces HTTPS for all connections by default. Do not disable it.
ATS is URL Loading System policy, so it covers URLSession rather than making
lower-level Network.framework connections secure automatically. When using
Network.framework, configure secure TLS parameters and trust handling correctly
for that protocol stack.
Use domain-specific ATS exceptions only as a last resort.
Rules:
- Never set
NSAllowsArbitraryLoadstotruein production unless there is no narrower option. - ATS exceptions require justification and may trigger additional App Store review.
- Use exception domains only for third-party servers you cannot upgrade to HTTPS.
NSAllowsLocalNetworkingis acceptable for local device communication (Bonjour, IoT).- Prefer ATS
NSPinnedDomainsfor declarative pinning when possible. Raw bytes fromSecKeyCopyExternalRepresentationare not sufficient for SPKI pinning; correct SPKI pinning hashes Subject Public Key Info and belongs inswift-security.
Common Mistakes
DON'T: Use URLSession.shared with custom configuration needs.
DO: Create a configured URLSession with appropriate timeouts, caching,
and delegate for production code.
DON'T: Force-unwrap URL(string:) with dynamic input.
DO: Use URL(string:) with proper error handling. Force-unwrap is
acceptable only for compile-time-constant strings.
DON'T: Decode JSON on the main thread for large payloads.
DO: Keep decoding on the calling context of the URLSession call, which
is off-main by default. Only hop to @MainActor to update UI state.
DON'T: Ignore cancellation in long-running network tasks.
DO: Check Task.isCancelled or call try Task.checkCancellation() in
loops (pagination, streaming, retry). Use .task in SwiftUI for automatic
cancellation.
DON'T: Use Alamofire or Moya when URLSession async/await handles the need. DO: Use URLSession directly. With async/await, the ergonomic gap that justified third-party libraries no longer exists. Reserve third-party libraries for genuinely missing features (e.g., image caching).
DON'T: Mock URLSession directly in tests.
DO: Use URLProtocol subclass for transport-level mocking, or use
protocol-based clients that accept a test double.
DON'T: Use data(for:) for large file downloads.
DO: Use download(for:) which streams to disk and avoids memory spikes.
DON'T: Fire network requests from body or view initializers.
DO: Use .task or .task(id:) to trigger network calls.
DON'T: Hardcode authentication tokens in requests. DO: Inject tokens via middleware so they are centralized and refreshable.
DON'T: Ignore HTTP status codes and decode blindly. DO: Validate status codes before decoding. A 200 with invalid JSON and a 500 with an error body require different handling.
Review Checklist
- Foreground transfers use async/await; background sessions use delegate/task APIs
- Error handling covers URLError cases (.notConnectedToInternet, .timedOut, .cancelled)
- Requests are cancellable (respect Task cancellation via
.taskmodifier or stored Task references) - Authentication tokens injected via middleware, not hardcoded
- Response HTTP status codes validated before decoding
- Large downloads use
download(for:)notdata(for:) - Network calls happen off
@MainActor(only UI updates on main) - URLSession configured with appropriate timeouts and caching
- Production clients inject configured sessions instead of using
URLSession.shared - Background transfers use task/delegate APIs, not async convenience APIs
- Retry logic excludes cancellation and 4xx client errors
- Pagination checks
Task.isCancelledbetween pages - Sensitive tokens stored in Keychain (not UserDefaults or plain files)
- No force-unwrapped URLs from dynamic input
- Server error responses decoded and surfaced to users
- Network.framework code configures TLS/trust explicitly and keeps deep pinning work in
swift-security -
NetworkConnection<QUIC>stream APIs are treated as async throwing - Ensure network response model types conform to Sendable; use @MainActor for UI-updating completion paths
References
- See references/urlsession-patterns.md for complete API client implementation, multipart uploads, download progress, URLProtocol mocking, retry/backoff, certificate pinning, request logging, and pagination implementations.
- See references/background-websocket.md for background URLSession configuration, background downloads/uploads, WebSocket patterns with structured concurrency, and reconnection strategies.
- See references/lightweight-clients.md for the lightweight closure-based client pattern (struct of async closures, injected via init for testability and preview support).
- See references/network-framework.md for Network.framework (NWConnection, NWListener, NWBrowser, NWPathMonitor) and low-level TCP/UDP/WebSocket patterns.
- See references/file-storage-patterns.md for file system directory selection, FileProtectionType, backup exclusion, and storage pressure handling.
Related skills
More from dpearson2699/swift-ios-skills and the wider catalog.

ios-security
Secure iOS apps with Keychain Services, CryptoKit encryption, biometric authentication (Face ID, Touch ID), Secure Enclave key storage, LAContext, App Transport Security (ATS), certificate pinning, data protection classes, and secure coding patterns. Use when implementing app security features, auditing privacy manifests, configuring App Transport Security, securing keychain access, adding biometric authentication, or encrypting sensitive data with CryptoKit.

ios-simulator
Manages iOS Simulator devices and tests app behavior using xcrun simctl. Covers device lifecycle (create, boot, shutdown, erase, delete), app install and launch, push notification simulation, location simulation, permission grants via privacy subcommand, deep link testing via openurl, status bar overrides, screenshot and video recording, log streaming with os_log filtering, get_app_container paths, and #if targetEnvironment(simulator) compile-time checks. Use when creating or managing simulator devices, testing push notifications without APNs, simulating GPS locations, granting or resetting privacy permissions, capturing screenshots or screen recordings from the command line, streaming device logs, debugging simulator boot failures, troubleshooting CoreSimulator issues, or checking simulator hardware limitations.

mapkit
Build map and location features in iOS/macOS apps with MapKit and CoreLocation async APIs.

metrickit
Collect production performance metrics and crash diagnostics from iOS/macOS devices using MetricKit.

musickit
Integrate Apple Music playback, catalog search, and Now Playing metadata into iOS apps.

natural-language
Tokenize, tag, and analyze text with NaturalLanguage; translate with Translation framework.