没有可见的@interface用于' AgeGateViewController'声明选择器错误' setNeedsStatusBarAppearanceUpdate'

时间:2014-04-04 16:57:16

标签: objective-c interface selector

我最近被要求用一种我并不熟悉的语言调试工作中的项目。我搜索过并找到了类似问题的人,但我找到的解决方案都没有帮助。我在Web开发方面的背景更多,所以我不确定如何处理标题中的错误。

#import "AgeGateViewController.h"


@interface AgeGateViewController ()

@end

@implementation AgeGateViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
        self.view.autoresizesSubviews = YES;
        self.needsRotation = NO;

        if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
            [self setNeedsStatusBarAppearanceUpdate];
        }

需要做些什么或修复才能使此错误消失?

0 个答案:

没有答案