我正在开发一款带有splitview控制器的应用程序,并支持所有方向。但是在横向模式下我添加到detailview上的按钮不起作用,所以我想知道如何找出当前委托的内容,以便我可以在那里发送操作命令。
更新
基本上按钮(在detailVC中)应该更改masterVC中的VC?也许不是基本的,但这不应该是难以做到的吗?
答案 0 :(得分:0)
如果您要求定位案例
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if(orientation == 0) //Default orientation
//UI is in Default (Portrait) -- this is really a just a failsafe.
else if(orientation == UIInterfaceOrientationPortrait)
//Do something if the orientation is in Portrait
else if(orientation == UIInterfaceOrientationLandscapeLeft)
// Do something if Left
else if(orientation == UIInterfaceOrientationLandscapeRight)
//Do something if right
在这种情况下,我想详细了解您的问题(您想要的确切代表)