Requirements

  • iOS 14.0+ (iOS 15.0+ recommended)
  • Xcode 12.0+ (Xcode 14.0+ recommended)
  • Swift 5.5+
  • SwiftUI 2.0+

Installation Methods

  1. Open your Xcode project
  2. FileAdd Package Dependencies…
  3. Enter the repository URL:
    https://github.com/suggestkit/suggestkit-swift
    
  4. Select the latest version and add to your target

Manual Installation

Download the latest release from GitHub and drag the framework into your project.

Verify Installation

Add this to any SwiftUI view to verify the installation:
import SuggestKit

struct TestView: View {
    var body: some View {
        Text("SuggestKit Version: \(SuggestKit.version)")
    }
}

Next Steps