我正在开发一个应用,其中X object
和device orientation
更改为object should get changed in same direction
。
Y
|
|
|
|
|
|___________X
想要X object
same direction
移动device Orientation
作为get changed
{{1}}?
我没有得到怎么做?
请建议我,我怎么能这样做?
感谢。
答案 0 :(得分:1)
您可以使用viewDidLayouSubviews,查看示例:
-(void)viewDidLayoutSubviews{
[super viewDidLayoutSubviews];
if([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft)
{
....
}
else if([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeRight)
{
.....
}
else ...
}