我遇到了一个很大的问题,我已经将inmobi集成到了我的应用程序中,该应用程序不支持界面方向,但是当我按广告时,视图就会加载到顶部并旋转,这并不坏,但是旋转时,视图变得失真,无法覆盖全屏,
也许有人遇到过类似的问题?
我的代码:

- (void)showInMobiBanner
{
    if (_inMobView == nil)
    {
        _inMobView = [[IMAdView alloc] init];
        _inMobView.delegate    = self; //optional
        _inMobView.imAppId     = kInMobiAppId;
        _inMobView.imAdUnit    = IM_UNIT_320x50;
        _inMobView.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin;
    }
    if (self.containerView != nil)
    {
        _inMobView.rootViewController = self.containerView;
    }
    else
    {
        _inMobView.rootViewController = self.navigationController;
    }
        IMAdRequest *request = [IMAdRequest request];
        request.isLocationEnquiryAllowed = NO;

        _inMobView.frame = CGRectMake(0, 0, 320, 50);
        _inMobView.imAdRequest = request;
        [_inMobView loadIMAdRequest:request];
    [self.view addSubview:_inMobView];
}


提前致谢!

最佳答案

看来您使用的是InMobi SDK(3.0.2)的旧版本。

最近有一个较新的版本发布:http://developer.inmobi.com/wiki/index.php?title=IOS_SDK_350

引入了一种新方法:

- (BOOL)shouldRotateToInterfaceOrientation:(UIInterfaceOrientation)orientation;


您可以在UIViewController中使用此方法,并处理方向更改,如下所示:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return [imAdView shouldRotateToInterfaceOrientation:interfaceOrientation];
}


希望这可以帮助!

10-08 08:31