3
我想支持示例代碼「GLPaint」上的朝向縱向和縱向朝上。 什麼是代碼這個應用程序支持方向肖像和肖像顛倒?iOS示例「GLPaint」無法支持朝向縱向,縱向朝下
示例代碼 「GLPaint」 http://developer.apple.com/library/ios/#samplecode/GLPaint/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007328
此示例使用對象窗口不繼承UIViewController
。 我試過這段代碼,但沒有工作。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if ((interfaceOrientation == UIInterfaceOrientationPortrait) ||
(interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown))
return YES;
return NO;
}
我試圖修改應用程序來設置視圖控制器2模式。
答:GLPaint添加子類視圖控制器。 B:新項目OpenGL ES應用程序添加GLPaint。
兩者都不好。 目前,我不知道源代碼有什麼問題。