Firebase Analytics collects usage and behavior data for your app. The SDK logs two primary types of information:
- Events: What is happening in your app, such as user actions, system events, or errors.
- User properties: Attributes you define to describe segments of your userbase, such as language preference or geographic location.
Analytics automatically logs some events and user properties; you don't need to add any code to enable them.
Prerequisites
- Add Firebase to your iOS project.
- (Recommended). Add the AdSupport framework to your project to enable additional features such as audiences and campaign attribution.
Add Analytics to your app
- Add the dependency for Firebase to your Podfile:
pod 'Firebase/Core'
- Run
pod installand open the created.xcworkspacefile. - Import the Firebase module in your
UIApplicationDelegatesubclass:Swift
import Firebase
Objective-C
@import Firebase;
- Configure a
FIRAppshared instance, typically in your application'sapplication:didFinishLaunchingWithOptions:method:Swift
// Use Firebase library to configure APIs FIRApp.configure()
Objective-C
// Use Firebase library to configure APIs [FIRApp configure];
Log events
After you have configured the FIRApp instance, you can begin to log
events with the logEventWithName() method. You can explore the
predefined events and parameters in the FIREventNames.h and
FIRParameterNames.h header files.
The following example demonstrates how to log a suggested
kFIREventSelectContent event to indicate a user has clicked on a specific
element in your app:
Objective-C
[FIRAnalytics logEventWithName:kFIREventSelectContent
parameters:@{
kFIRParameterItemID:[NSString stringWithFormat:@"id-%@", self.title],
kFIRParameterItemName:self.title,
kFIRParameterContentType:@"image"
}];Swift
FIRAnalytics.logEvent(withName: kFIREventSelectContent, parameters: [ kFIRParameterItemID: "id-\(title!)" as NSObject, kFIRParameterItemName: title! as NSObject, kFIRParameterContentType: "cont" as NSObject ])
To view this event in the Xcode debug console, enable Analytics debugging:
- In Xcode, select Product > Scheme > Edit scheme...
- Select Run from the left menu.
- Select the Arguments tab.
- In the Arguments Passed On Launch section, add
-FIRAnalyticsDebugEnabled.
Next Steps
- See your data refresh periodically in the Firebase console.
- Explore the guides on events and user properties.

