swift-expert
Included with Lifetime
$97 forever
Expert-level Swift development for iOS, macOS with SwiftUI, Combine, and modern Swift 5.9+
languagesswiftiosmacosswiftuicombineasync-awaitapple
What this skill does
# Swift Expert
Expert guidance for Swift development including iOS/macOS apps, SwiftUI, Combine, async/await, and Swift 5.9+ features.
## Core Concepts
### Modern Swift Features (5.9+)
- Async/await concurrency
- Actors for thread safety
- Property wrappers
- Result builders
- Protocols and generics
- Value types vs reference types
- Automatic Reference Counting (ARC)
- Macros (Swift 5.9+)
### SwiftUI
- Declarative UI framework
- State management
- View composition
- Layout system
- Animations
- Navigation
### Combine
- Reactive programming
- Publishers and subscribers
- Operators
- Error handling
## Swift Syntax
### Basics and Optionals
```swift
// Variables and constants
var mutableValue = 42
let constantValue = 100
// Optionals
var optionalName: String? = "Alice"
// Optional binding
if let name = optionalName {
print("Hello, \(name)")
}
// Optional chaining
let length = optionalName?.count
// Nil coalescing
let displayName = optionalName ?? "Unknown"
// Guard statement
func greet(person: String?) {
guard let name = person else {
print("No name provided")
return
}
print("Hello, \(name)")
}
```
### Functions and Closures
```swift
// Function with labeled parameters
func greet(person: String, from hometown: String) -> String {
return "Hello \(person) from \(hometown)!"
}
// Closures
let numbers = [1, 2, 3, 4, 5]
let doubled = numbers.map { $0 * 2 }
let evens = numbers.filter { $0 % 2 == 0 }
let sum = numbers.reduce(0, +)
// Trailing closure
numbers.forEach { number in
print(number)
}
// Capture values
func makeIncrementer(step: Int) -> () -> Int {
var total = 0
return {
total += step
return total
}
}
```
### Structs and Classes
```swift
// Struct (value type, preferred)
struct User {
let id: UUID
var name: String
var email: String
// Computed property
var displayName: String {
name.isEmpty ? "Anonymous" : name
}
// Method
mutating func updateEmail(_ newEmail: String) {
email = newEmail
}
}
// Class (reference type)
class ViewController {
var title: String?
weak var delegate: ViewControllerDelegate?
init(title: String?) {
self.title = title
}
deinit {
print("Deallocated")
}
}
// Protocol
protocol Identifiable {
var id: UUID { get }
}
extension User: Identifiable {}
```
### Enums
```swift
// Simple enum
enum Direction {
case north, south, east, west
}
// Associated values
enum Result<Success, Failure: Error> {
case success(Success)
case failure(Failure)
}
// Raw values
enum StatusCode: Int {
case ok = 200
case notFound = 404
case serverError = 500
}
// Pattern matching
switch result {
case .success(let value):
print("Success: \(value)")
case .failure(let error):
print("Error: \(error)")
}
```
### Async/Await (Swift 5.5+)
```swift
// Async function
func fetchUser(id: String) async throws -> User {
let url = URL(string: "https://api.example.com/users/\(id)")!
let (data, _) = try await URLSession.shared.data(from: url)
return try JSONDecoder().decode(User.self, from: data)
}
// Call async function
Task {
do {
let user = try await fetchUser(id: "123")
print(user.name)
} catch {
print("Error: \(error)")
}
}
// Parallel execution with async let
func loadUserData(id: String) async throws -> (User, [Post], [Comment]) {
async let user = fetchUser(id: id)
async let posts = fetchPosts(userId: id)
async let comments = fetchComments(userId: id)
return try await (user, posts, comments)
}
// Task groups for dynamic parallelism
func fetchMultipleUsers(ids: [String]) async throws -> [User] {
try await withThrowingTaskGroup(of: User.self) { group in
for id in ids {
group.addTask {
try await fetchUser(id: id)
}
}
var users: [User] = []
for try await user in group {
users.append(user)
}
return users
}
}
```
### Actors (Thread Safety)
```swift
actor BankAccount {
private var balance: Double = 0
func deposit(amount: Double) {
balance += amount
}
func withdraw(amount: Double) throws {
guard balance >= amount else {
throw BankError.insufficientFunds
}
balance -= amount
}
func getBalance() -> Double {
balance
}
}
// Usage (all access is async and serialized)
let account = BankAccount()
Task {
await account.deposit(amount: 100)
let balance = await account.getBalance()
print(balance)
}
```
## SwiftUI
### Basic Views
```swift
import SwiftUI
struct ContentView: View {
@State private var name = ""
@State private var count = 0
var body: some View {
VStack(spacing: 20) {
Text("Hello, \(name.isEmpty ? "World" : name)!")
.font(.title)
.foregroundColor(.blue)
TextField("Enter name", text: $name)
.textFieldStyle(.roundedBorder)
.padding()
HStack {
Button("Decrement") {
count -= 1
}
Text("\(count)")
.frame(minWidth: 50)
Button("Increment") {
count += 1
}
}
.buttonStyle(.borderedProminent)
}
.padding()
}
}
```
### State Management
```swift
// @State - local view state
struct CounterView: View {
@State private var count = 0
var body: some View {
Button("Count: \(count)") {
count += 1
}
}
}
// @Binding - pass state reference
struct ChildView: View {
@Binding var isOn: Bool
var body: some View {
Toggle("Setting", isOn: $isOn)
}
}
// @ObservableObject - external state
class UserViewModel: ObservableObject {
@Published var user: User?
@Published var isLoading = false
@Published var error: Error?
func fetchUser() async {
isLoading = true
defer { isLoading = false }
do {
user = try await APIClient.shared.fetchUser()
} catch {
self.error = error
}
}
}
struct UserView: View {
@StateObject private var viewModel = UserViewModel()
var body: some View {
Group {
if viewModel.isLoading {
ProgressView()
} else if let user = viewModel.user {
UserDetailView(user: user)
} else if let error = viewModel.error {
ErrorView(error: error)
}
}
.task {
await viewModel.fetchUser()
}
}
}
// @EnvironmentObject - app-wide state
@main
struct MyApp: App {
@StateObject private var appState = AppState()
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(appState)
}
}
}
struct SomeView: View {
@EnvironmentObject var appState: AppState
var body: some View {
Text(appState.currentUser?.name ?? "Guest")
}
}
```
### Lists and Navigation
```swift
struct PostListView: View {
let posts: [Post]
@State private var selectedPost: Post?
var body: some View {
NavigationStack {
List(posts) { post in
NavigationLink(value: post) {
VStack(alignment: .leading) {
Text(post.title)
.font(.headline)
Text(post.excerpt)
.font(.subheadline)
.foregroundColor(.secondary)
}
}
}
.navigationTitle("Posts")
.navigationDestination(for: Post.self) { post in
PostDetailView(post: post)
}
}
}
}
```
### Custom Modifiers
```swift
struct CardModifier: ViewModifiRelated in languages
csharp-expert
IncludedExpert-level C# development with .NET 8+, ASP.NET Core, LINQ, async/await, and enterprise patterns
languages
java-expert
IncludedExpert-level Java development with Java 21+ features, Spring Boot, Maven/Gradle, and enterprise best practices
languages
pcl-expert
IncludedExpert in Persona Control Language (PCL) - language design, compiler architecture, runtime systems, and ecosystem development
languages
php-expert
IncludedExpert-level PHP development with PHP 8+, Laravel, Composer, and modern best practices
languages
rust-expert
IncludedExpert-level Rust development with ownership, lifetimes, async, error handling, and production-grade patterns
languages
go-expert
IncludedExpert-level Go development with Go 1.22+ features, concurrency, standard library, and production-grade best practices
languages