当我旋转ipad时,我的应用程序没有旋转我启用了所有方向,我将它们添加到.plist文件但仍然没有响应,我没有找到
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
在我的申请表上,我现在不应该把它放在哪里 申请详情: MainWindow.xib文件: 它的文件所有者类是占位符中的UIApplication 在对象中:App Controller其类是App Controller &安培;绘画窗口它的类是PaintingWindow &安培;绘画查看其类是PaintingView
我有AppController.h和.m
@interface AppController : NSObject <UIApplicationDelegate>
我有PaintingWindow.h和.m
@interface PaintingWindow : UIWindow
我有PaintingView.h和.m
@interface PaintingView : UIView
我应该把这个功能放在哪里?
答案 0 :(得分:0)
该方法是一个UIViewController方法,因此你需要有一个UIViewController的子类来放入它。