«uiviewanimation» 태그된 질문

17
UIView 애니메이션을 취소 하시겠습니까?
UIView진행중인 애니메이션 을 취소 할 수 있습니까? 아니면 CA 수준으로 떨어 뜨려야합니까? 즉, 다음과 같은 작업을 수행했습니다 (아마도 애니메이션 동작을 설정했을 수도 있음). [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:duration]; [UIView setAnimationCurve: UIViewAnimationCurveLinear]; // other animation properties // set view properties [UIView commitAnimations]; 그러나 애니메이션이 완료되고 애니메이션 종료 이벤트를 받기 전에 취소하고 …


18
popViewController의 완료 블록
를 사용하여 모달 뷰 컨트롤러를 닫을 때 dismissViewController완료 블록을 제공하는 옵션이 있습니다. 에 대해 비슷한 것이 popViewController있습니까? 완료 인수는 매우 편리합니다. 예를 들어, 모달이 화면에서 벗어날 때까지 테이블 뷰에서 행 제거를 보류하여 사용자가 행 애니메이션을 볼 수 있도록 할 수 있습니다. 푸시 뷰 컨트롤러에서 돌아올 때도 같은 기회를 원합니다. 내가 …

6
원 그리기 애니메이션
원의 그림을 애니메이션으로 만드는 방법을 찾고 있습니다. 나는 원을 만들 수 있었지만 그것은 모두 함께 그립니다. 내 CircleView수업 은 다음과 같습니다 . import UIKit class CircleView: UIView { override init(frame: CGRect) { super.init(frame: frame) self.backgroundColor = UIColor.clearColor() } required init(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } override …

16
UINavigationController에서 뷰를 팝하고 한 작업에서 다른 뷰로 대체하려면 어떻게해야합니까?
UINavigationController 스택에서 하나의 뷰를 제거하고 다른 뷰로 교체해야하는 응용 프로그램이 있습니다. 상황은 첫 번째보기가 편집 가능한 항목을 만든 다음 항목에 대한 편집기로 자신을 대체하는 것입니다. 첫 번째보기 내에서 명백한 해결책을 수행 할 때 : MyEditViewController *mevc = [[MYEditViewController alloc] initWithGizmo: gizmo]; [self retain]; [self.navigationController popViewControllerAnimated: NO]; [self.navigationController pushViewController: mevc animated: …

14
iOS 7에서 뒤로 버튼을 변경하면 뒤로 이동하려면 스 와이프가 비활성화됩니다.
다음과 같은 사용자 지정 뒤로 버튼을 설정하는 iOS 7 앱이 있습니다. UIImage *backButtonImage = [UIImage imageNamed:@"back-button"]; UIButton *backButton = [UIButton buttonWithType:UIButtonTypeCustom]; [backButton setImage:backButtonImage forState:UIControlStateNormal]; backButton.frame = CGRectMake(0, 0, 20, 20); [backButton addTarget:self action:@selector(popViewController) forControlEvents:UIControlEventTouchUpInside]; UIBarButtonItem *backBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:backButton]; viewController.navigationItem.leftBarButtonItem = backBarButtonItem; 그러나 이렇게하면 iOS 7 "왼쪽에서 오른쪽으로 스 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.