当我旋转 ipad 时,我的应用程序没有旋转我启用了所有方向并将它们添加到 .plist 文件但仍然没有响应,我没有找到
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
在我的应用程序上,我现在不应该把它放在哪里我的应用程序详细信息: MainWindow.xib:它的文件所有者类是 UIApplication 在占位符和对象中:App Controller 它的类是 App Controller & Painting Window 它的类是 PaintingWindow & Painting查看它的类是 PaintingView
我有 AppController.h 和 .m
@interface AppController : NSObject <UIApplicationDelegate>
我有 PaintingWindow.h 和 .m
@interface PaintingWindow : UIWindow
我有 PaintingView.h 和 .m
@interface PaintingView : UIView
我应该把这个功能放在哪里?