English 中文(简体)
主计长没有答复RotateFrom InterfaceOrient
原标题:ViewController not responding to didRotateFromInterfaceOrientation

尽管我在守则中增加了以下内容,但我的看法控制人员没有回应<条码>didRotateFrom InterfaceOrientation:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return YES;
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    [self.popOver dismissPopoverAnimated:NO];
    if (interfaceOrientation == UIInterfaceOrientationLandscapeRight) {
    ... My Custom Code...   
    }
}

我在这里做了一些错误的事情?

最佳回答

如果您能够继承《国际投资协议书》(这是不幸的),你可使用

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];

然后登记开始接收>

问题回答

如果您的“情报调查员”从某种根源上说是儿童,那么国际调查局就没有将它作为儿童控制员添加到真正的控制人员。 解决这一问题最容易的方法是修改你根基控制器:

- (void)viewDidLoad
{
    [super viewDidLoad];    
    [self addChildViewController:(UIViewController*) self.yourChildController];
}  

这应当做到。 现在,你们的儿童控制者将接受:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration;

以及

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation;

信息。

我认为,这里的真正答案(更准确地说,对相关问题的答复)是,你需要打电话。

[super didRotateFromInterfaceOrientation:fromInterfaceOrientation];

页: 1 例如:

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
    [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
    // Then your code...
}

pple文件没有提及这一点,但在遗漏时给我造成了一些严重和难以解释的问题。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签