iOS의 내 sencha-tpuch/phonegap 앱에서 내 앱이 사용 된 기기로 방향을 바꾸지 않기를 바랍니다. 나는 어떻게 감각 접촉에서 방향 변경을 억제 할 수 있습니까? 아니면 정확히 무시할 수 있습니까? thnx! 당신의 폰갭의 Xcode 프로젝트에서sencha touch :: 오리엔테이션 변경을 억제하는 방법
0
A
답변
2
0
함수
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
을 찾아 지원 방향에 대한 네 돌려 거기에서 파일 MainViewController.m
을 찾을 수 있습니다.
답변 해 주셔서 감사합니다. 하지만 xcode 나 phonegap이 아닌 sencha tuch에서 가능하다면 정말 관심이 있습니다. – headkit
Sencha는 ** 불가능합니다 **. – riship89