I am trying to implement video ad into my Sparrow 1.4 app.
I followed the instruction from the ad SDK and put these lines of code in AppDelegate:
viewController = [[FWPlayerViewController alloc] init];
window.rootViewController = viewController;
When I run the project, I can hear the audio, but not the video. My game screen is showing, so maybe the video is playing under Sparrow. So I searched the forum and tried different codes, such as :
UIView *sparrowView = self.stage.nativeView;
[sparrowView addSubview:viewController.view];
Now I can see the ad window, but the ad is no longer playing.
I mainly work within Sparrow, and my knowledge of ObjC viewControllers is practically nil. I've spent hours searching & trying different codes to fix this, but no luck. I would really appreciate if anyone can help. Thanks!