Reputation: 11
I've followed the instructions on this page for my Xcode project (ios app): https://developers.facebook.com/docs/ios/getting-started/
And I've created and run ads for app installs however how do I know how many people have installed my app as a result of the ads? There is nothing showing top left of the ads page....just zero???? Nothing showing in my Facebook Developer account.
I've clearly missed a pretty obvious step...can someone please shed some light?
Upvotes: 1
Views: 313
Reputation: 9944
You're probably not calling [FBAppEvents activateApp]
on applicationDidBecomeActive:
.
Check also if you have a FacebookAppID
key on your target's Info.plist
.
You AppDelegate
needs to look like this:
#import "AppDelegate.h"
#import <FacebookSDK.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// stuff
return YES;
}
- (void)applicationDidBecomeActive:(UIApplication *)application {
[FBAppEvents activateApp];
}
@end
Upvotes: 1