我有一个UIViewController
包含一个新的UIViewController
,如下所示,
@implementation ParentViewController
- (id)init
{
// some stuff
}
- (BOOL)CreateChildViewController
{
UIViewController *childVC = [[UIViewController alloc] init];
}
@end
现在我需要停止 childVC 的 interfaceOrientation。
有可能吗,如果可以怎么办??