iPhone 3

iOS 8 iPhone에서 UIPopover 프레젠테이션 컨트롤러

iOS 8 iPhone에서 UIPopover 프레젠테이션 컨트롤러 혹시 아는 사람?UIPopoverPresentationController아이폰에서 팝업을 보여주는 데 사용할 수 있습니까?Apple이 iPad와 iPhone을 위한 보다 통합된 프레젠테이션 컨트롤러를 만들기 위해 iOS 8에 이 기능을 추가했는지 궁금합니다. 베타에서 질문/답변을 해도 되는지 확실하지 않습니다.그런 경우에는 제거하겠습니다.기본 적응 동작을 재정의할 수 있습니다(UIModalPresentationFullScreen콤팩트한 수평 환경, 즉 아이폰)을 사용하여adaptivePresentationStyleForPresentationController:방법을 통해 사용 가능UIPopoverPresentationController.d..

programing 2023.09.06

푸시된 컨트롤러에서 루트뷰 컨트롤러를 가져오려면 어떻게 해야 합니까?

푸시된 컨트롤러에서 루트뷰 컨트롤러를 가져오려면 어떻게 해야 합니까? RootViewController에서 다음과 같은 보기 컨트롤러를 푸시합니다. [self.navigationController pushViewController: 다른 ViewController 애니메이션:예]; 그러나, 시작anotherViewController이제 RootView 컨트롤러에 다시 액세스하려고 합니다. 난 노력하고 있어. (지금 다른 View 컨트롤러 내부)///RootViewController *root = (RootViewController*)self.parentViewController ; // 아니요.잘못한RootViewController *root = (RootViewController*)[self.navig..

programing 2023.06.13

UITableView beginUpdates/endUpdates에서 애니메이션이 종료되었음을 감지하는 방법은 무엇입니까?

UITableView beginUpdates/endUpdates에서 애니메이션이 종료되었음을 감지하는 방법은 무엇입니까? 다음을 사용하여 테이블 셀 삽입/삭제 중insertRowsAtIndexPaths/deleteRowsAtIndexPaths에 싸인.beginUpdates/endUpdates저도 사용하고 있습니다.beginUpdates/endUpdates행 높이를 조정할 때.이러한 모든 작업은 기본적으로 애니메이션으로 표시됩니다. 사용할 때 애니메이션이 종료되었는지 확인하는 방법beginUpdates/endUpdates?이건 어때요? [CATransaction begin]; [CATransaction setCompletionBlock:^{ // animation has finished }]; [table..

programing 2023.06.03