본문 바로가기

프로그래밍/iOS,macOS

뷰 에니메이션

[UIView animateWithDuration:1.0

delay:

options: 

animations:^{

// 에니메이션 수행

completion:^(BOOL finished) {

// 에니메이션 완료 후

}];




ios7

[UIView animateWithDuration:

delay:

usingSpringWithDamping:

initialSpringVelocity:

options:

animations:^{

}

completion:^(BOOL finished) {

}];


'프로그래밍 > iOS,macOS' 카테고리의 다른 글

오토레이아웃 이것저것 / Constraint / UITextView  (0) 2016.10.25
커스텀객체와 인터페이스빌더  (0) 2016.10.23
스토리보드 / XIB  (0) 2016.10.22
싱글톤  (0) 2016.10.19
코어 데이터 정리  (0) 2016.10.18
슬라이드메뉴  (0) 2016.10.16
UITableView / UICollectionView  (0) 2016.10.16
파일 가져오기  (0) 2016.10.16
비동기 처리 ( GCD , NSOperation )  (0) 2016.10.13
[objective-c] 블록구문  (0) 2016.10.13