AppPanel
AnalyticsiOS Setup

Tracking Events

Send custom events from your iOS app.

Once the SDK is configured, you can start tracking events.

Basic usage

AppPanel.shared.track("button_tapped")

Adding event properties

Attach properties to provide context about the event.

Values must be JSON-serializable.

AppPanel.shared.track("item_purchased", eventProperties: [
  "item_id": "SKU-123",
  "price": 9.99,
  "currency": "USD"
])

AppPanel.shared.track("search_performed", eventProperties: [
  "query": "running shoes",
  "results_count": 42
])

On this page