ios

iOS mobile development

ffsshhttiikk/opencode-agents-skills3 installsMITSynced Aug 22

Works with

Claude CodeCursorCodex CLIGitHub CopilotGemini CLI
---
name: ios
description: iOS mobile development
license: MIT
---

## What I do

- Develop native iOS applications using Swift and SwiftUI
- Build user interfaces with UIKit and SwiftUI
- Work with Apple frameworks (Foundation, AVFoundation, CoreData, etc.)
- Implement iOS-specific patterns and conventions
- Handle iOS device testing and provisioning
- Optimize for Apple platform guidelines
- Prepare apps for App Store submission

## When to use me

Use me when:
- Building native iOS applications
- Creating apps requiring tight Apple integration
- Need optimal performance on iOS devices
- Apps targeting iPadOS, watchOS, or tvOS
- Implementing AR/ML features with Apple frameworks
- Following Apple Human Interface Guidelines

## Key Concepts

### Swift Programming
Modern, safe, fast language for iOS development:

```swift
import SwiftUI

struct ContentView: View {
    @StateObject private var viewModel = CounterViewModel()
    
    var body: some View {
        VStack {
            Text("\(viewModel.count)")
                .font(.largeTitle)
            
            Button(action: { viewModel.increment() }) {
                Label("Increment", systemImage: "plus.circle")
            }
            .buttonStyle(.borderedProminent)
        }
    }
}

@MainActor
class CounterViewModel: ObservableObject {
    @Published var count: Int = 0
    
    func increment() {
        count += 1
    }
}
```

### UIKit vs SwiftUI
- **UIKit**: Programmatic UI, mature, full control
- **SwiftUI**: Declarative UI, less code, modern approach
- Often used together (UIHostingController embeds SwiftUI in UIKit)

### iOS Architecture Patterns
- **MVC**: Traditional Model-View-Controller
- **MVVM**: Modern with ObservableObjects
- **Coordinator**: Navigation management
- **VIPER**: Complex app architecture

### Key Frameworks
- **SwiftUI**: Declarative UI framework
- **Combine**: Reactive programming
- **Core Data**: Data persistence
- **CloudKit**: iCloud sync
- **ARKit**: Augmented reality
- **Core ML**: Machine learning

More Mobile skills

← All Mobile skills

Check your AI visibility

One URL in, a 0–100 score and the exact fixes out.

RUN THE CHECK

Browse all the tools

15 tools across six categories
13 of them never send your data anywhere

Free · No signup · No trial clock

SEE THE DIRECTORY