Installation
Add this code to your iOS project to initialize Hardal and start sending events:
import Foundation
let hardalEndpoint = "https://<your-hardal-signal-id>-signal.usehardal.com"
func sendEvent(eventName: String, properties: [String: Any]) {
guard let url = URL(string: "https://<your-hardal-signal-id>-signal.usehardal.com/push/hardal") else { return }
let eventData: [String: Any] = [
"event": eventName,
"properties": properties,
"timestamp": ISO8601DateFormatter().string(from: Date())
]
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
do {
request.httpBody = try JSONSerialization.data(withJSONObject: eventData)
URLSession.shared.dataTask(with: request) { data, response, error in
if let error = error {
print("Error sending event: \(error)")
}
}.resume()
} catch {
print("Error creating request: \(error)")
}
}
Configuration Options
For iOS integration, you can customize the following:
- Custom event properties
- Event batching
- Retry logic for failed requests
Example Usage
Troubleshooting
Validation
To validate your iOS integration:
- Use the debug console in Xcode
- Monitor network requests in the debug navigator
- Check for successful HTTP responses (200 status code)
- Verify events appear in your Hardal dashboard
Enable verbose logging in debug builds to get detailed information about event tracking and network requests.