-
Notifications
You must be signed in to change notification settings - Fork 213
Open
Description
Would be great to have support for the aspect-oriented DSL style tracking in Swift.
I can get tracked screens and some events to come through, but for events, some selectors don't seem to work and can't figure out how to properly type the Properties callback.
The following is working for me for now:
let trackedEvents = [
[
ARAnalyticsClass: AccountEditVC.self,
ARAnalyticsDetails: [
[
ARAnalyticsEventName: "Account Edit Save Button",
ARAnalyticsSelectorName: "saveChangesBtnTapped:"
],
]
]
]
let trackedScreens = [
[
ARAnalyticsClass: FeaturesVC.self,
ARAnalyticsDetails: [[ARAnalyticsPageName: "Slideshow"]]
]
]
Can't figure out how to do properties though. And sometimes selectors that aren't IBOutlets are never called.
Metadata
Metadata
Assignees
Labels
No labels