惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Swift Closures — Functions You Can Pass Around 📦
Gamya · 2026-06-24 · via DEV Community

Fair warning: closures are widely considered the hardest topic in Swift. So if you read this and feel your brain doing something uncomfortable, that's completely normal. You're not missing something everyone else gets — closures genuinely take time to click, and even experienced Swift developers remember struggling with them at first. 🍥

Think of it like cycling uphill. It's hard while you're doing it. But once you reach the top, everything that comes after gets much easier — and in SwiftUI, closures are everywhere, so the climb is worth it.

Let's take it one small step at a time.

What Even Is a Closure?

You already know what a function is:

func greetUser() {
    print("Hi there!")
}

greetUser()

Now here's something surprising — you can copy a function into a variable:

var greetCopy = greetUser
greetCopy()

Notice: no parentheses after greetUser when copying. If you wrote greetUser(), you'd be calling the function and storing its return value — not copying the function itself.

So greetCopy now holds the entire function. You can call it just like the original.

Creating a Closure Directly

What if you skipped writing a named function entirely, and just assigned the code directly to a variable?

let sayHello = {
    print("Hi there!")
}

sayHello()

That chunk of code inside { } is a closure — an anonymous function stored in a variable. No func keyword, no name, just the code itself. Swift calls it a "closure expression," but the important thing is: it's a chunk of code you can store, pass around, and call whenever you need it.

Adding Parameters and a Return Type

Here's where the syntax gets a little different. With a regular function, parameters go outside the braces:

func sayHello(name: String) -> String {
    "Hi \(name)!"
}

But with a closure, everything has to go inside the braces — because the braces are the whole thing. Swift uses a special keyword, in, to separate the parameters and return type from the actual body of the closure:

let sayHello = { (name: String) -> String in
    "Hi \(name)!"
}

Breaking that down:

  • (name: String) — the parameter, inside the braces
  • -> String — the return type, also inside the braces
  • in — marks the end of the "header" and the start of the actual code
  • "Hi \(name)!" — the body of the closure

Think of in as Swift saying: "parameters done, code starts here."

Why Are Parameters Inside the Braces?

You might be wondering why closures work this way. Here's the reason:

If parameters were outside the braces, like this:

let payment = (user: String, amount: Int) // ❌ This looks like a tuple!

Swift would think you're creating a tuple, not a closure. Moving them inside the braces makes it unambiguous — the whole thing (parameters + body) is one self-contained chunk stored in a variable.

No Parameters, But Still Returns a Value

One edge case worth knowing: if your closure takes no parameters but does return a value, you can't just write -> Bool in. You need empty parentheses to make it clear:

let payment = { () -> Bool in
    print("Paying an anonymous person…")
    return true
}

This mirrors how regular functions work: func payment() -> Bool. Same idea, just written inside the braces.

Function Types

Every function (and closure) has a type — based on what it takes in and what it sends back.

var greetCopy: () -> Void = greetUser

Breaking that down:

  • () — takes no parameters
  • -> — here comes the return type
  • Void — returns nothing (sometimes written as (), but Void is clearer)

Here's a more interesting example:

func getUserData(for id: Int) -> String {
    if id == 1989 {
        return "Taylor Swift"
    } else {
        return "Anonymous"
    }
}

let data: (Int) -> String = getUserData
let user = data(1989)
print(user)

Notice something: when we copied getUserData into data, the external parameter label for disappeared. The function type is (Int) -> String — not (for id: Int) -> String. Parameter labels are not part of a function's type. So when you call the copy, you don't use the label:

data(1989)       // ✅ correct
data(for: 1989)  // ❌ wrong — no label on copies or closures

Passing Functions Into Functions

Here's where things start getting really powerful 🌟

Swift's sorted() function sorts an array alphabetically by default:

let team = ["Gloria", "Suzanne", "Piper", "Tiffany", "Tasha"]
let sortedTeam = team.sorted()
print(sortedTeam) // ["Gloria", "Piper", "Suzanne", "Tasha", "Tiffany"]

But what if Suzanne is the team captain and should always come first? sorted() lets you pass in a custom sorting function — one that accepts two strings and returns a Bool indicating which should come first:

func captainFirstSorted(name1: String, name2: String) -> Bool {
    if name1 == "Suzanne" {
        return true   // Suzanne goes first
    } else if name2 == "Suzanne" {
        return false  // Suzanne goes first (so name1 goes after)
    }
    return name1 < name2  // normal alphabetical for everyone else
}

let captainFirstTeam = team.sorted(by: captainFirstSorted)
print(captainFirstTeam) // ["Suzanne", "Gloria", "Piper", "Tasha", "Tiffany"]

We passed captainFirstSorted — an entire function — as an argument to sorted(). That's the power of functions being first-class values in Swift.

Passing a Closure Directly

Now here's where closures really shine. Instead of writing a separate named function just for one use, we can pass the logic directly as a closure:

let captainFirstTeam = team.sorted(by: { (name1: String, name2: String) -> Bool in
    if name1 == "Suzanne" {
        return true
    } else if name2 == "Suzanne" {
        return false
    }
    return name1 < name2
})

This does exactly the same thing as before — but without needing a separate captainFirstSorted function. The logic lives right where it's used.

Let's break down what's happening:

  • team.sorted(by:) — calling sorted with a custom comparator
  • { (name1: String, name2: String) -> Bool in — opening the closure, declaring its parameters, return type, and the in keyword
  • The body is the same sorting logic as before
  • The whole closure ends with }) — closing both the closure } and the function call )

Yes, that last line is a little punctuation-heavy. The next article will show you how Swift lets you simplify this syntax dramatically — but understanding the full form first makes those shortcuts make sense.

Why Do Closures Matter So Much?

Closures let you store "work to do later" in a variable. Some real-world examples:

  • Run some code after a delay
  • Run some code after an animation finishes
  • Run some code when a download completes
  • Run some code when a user taps a button

In every one of those cases, you're saying: "here's what I want to happen — but not right now." That's exactly what a closure is.

And in SwiftUI? Closures are literally everywhere. Every Button, every .onAppear, every animation — closures. Understanding them now means SwiftUI will feel far more natural later.

Quick Recap

Concept What It Means
Closure An anonymous function stored in a variable
in keyword Separates parameters/return type from the closure body
Function type Describes what a function takes and returns (labels excluded)
Passing a function You can pass functions (or closures) as arguments to other functions
sorted(by:) A great real-world example of passing a closure into a function

Wrap Up

Closures are hard — but now you've seen the full picture: what they are, why parameters live inside the braces, what function types look like, and how to pass closures directly into functions like sorted().

If it still feels a bit wobbly, that's okay. Read it again, try the examples in a playground, and let the concept settle. The next article will show you how Swift lets you simplify closure syntax significantly — and once that clicks, you'll wonder why you ever found them scary. 🌸


I know these Swift concepts well from hands-on practice — I use AI to help draft and organize my explanations, and every example and structure choice is something I've reviewed and stand behind.