Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have followed all the descriptions and directions put there on the website to integrate FlurryAnalytics and FlurryAppCircle and Analytics is showing information but there are no ads getting displayed on any of the views I have created.

In Application Delegate I did this as described:

/* FLURRY APP-CIRCLE INTEGRATION CODE*/
[FlurryAppCircle setAppCircleEnabled:YES];

/* FLURRY ANALYTICS INTEGRATION CODE*/
[FlurryAnalytics startSession:@"MY_API_KEY_HERE"]; 

and then in a view controller at view did load I hav added:

[FlurryAppCircle setAppCircleDelegate:  self];
hook = [FlurryAppCircle getHook:@"BuddyTracker_Default_Ad" xLoc:0 yLoc:0 
    view:self.view attachToView:YES orientation:@"portrait" 
    canvasOrientation:@"portrait" autoRefresh:YES canvasAnimated:YES 
    rewardMessage:nil userCookies:nil];

//where view is UIView.
  • Now in FlurryAppDelegate the method - (void)dataAvailable; is getting called but there is no ad added (possibly as a subview) to this view.

  • I also tried looking at the "hook" variable when data is available but it is nil.

  • One thing strange is that when I call
    getHook:@"BuddyTracker_Default_Ad" again in the dataAvailable method the ad magically appears.

I am not sure what is happening here. Could someone please suggest what should I do so that advertisements get added to the view automatically when loaded.

share|improve this question
Did you solve this in the end? – JamesC Nov 15 '12 at 14:14
Hi JamesC. It is very old post, I dont even remember how I solved this :) As far as I remember I used an alternate method to this, the one not involving getHook. – Shayan Ali Nov 16 '12 at 7:39
1  
Solved it now by using a delegate which has operations that get fired when Ads are ready..basically it was a timing issue. Thanks – JamesC Nov 20 '12 at 17:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.