0

iPhone SDK でカバー フローをポートレート モードで使用したいのですが、可能ですか?

私に提案してください。

ありがとう。

4

1 に答える 1

0

これを使う

オリエンテーションのためにコードの下で使用します

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
    //return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) ||
//          (interfaceOrientation == UIInterfaceOrientationLandscapeRight));

    return NO;
}

「FlowCoverViewController.m」で

ありがとう

于 2011-05-19T09:09:28.533 に答える