Tôi đang triển khai khóa xoay có lập trình trong ứng dụng tương tự như ứng dụng Kindle trong ứng dụng Kindle của Amazon: khi thiết bị được xoay, nút khóa hiển thị; nhấn nút và hướng được khóa theo hướng mà giao diện ở trong khi nhấn nút.Force iOS ViewController xoay theo hướng thiết bị sau khi mở khóa xoay có lập trình
Sau khi mở khóa, tôi muốn xoay giao diện theo hướng thiết bị hiện tại. Giả sử bạn xoay vòng theo chiều dọc, xoay thiết bị sang bên trái, sau đó mở khóa; Tôi muốn giao diện sau đó xoay sang bên trái. Đây là phương pháp để bật khóa:
- (IBAction)toggleRotationLock:(UIButton *)sender {
BOOL rotationLocked = [_defaults boolForKey:@"RotationLocked"];
if (rotationLocked) { //unlock rotation
[_defaults setBool:NO forKey:@"RotationLocked"];
/* force rotation to current device orientation here?
* ...
*/
} else { //lock rotation to current orientation
[_defaults setBool:YES forKey:@"RotationLocked"];
[_defaults setInteger:self.interfaceOrientation forKey:@"RotationOrientation"];
}
[_defaults synchronize];
[self setupRotationLockButton];
}
Bất kỳ cách nào để thực hiện việc này?
Xin cảm ơn, tryRotationĐể làm việc! – dysfunction