我正在爲越獄的iOS設備編寫一個調整設備,它與設備方向密切相關,它應該將整個屏幕設置爲指定的方向,並且保持該方向。這個調整運行在SpringBoard
和Backboardd
之內,我嘗試了下面的代碼,但不起作用。有人知道嗎?如何強制旋轉iOS的屏幕?
NSNumber *value = [NSNumber numberWithInt:orientation];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
也許可以使用這個代碼, 的NSNumber *值= [NSNumber的numberWithInt:UIInterfaceOrientationLandscapeLeft]; [[UIDevice currentDevice] setValue:value forKey:@「orientation」]; –