Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- silent push
- 푸시 데이터 저장
- 플러터 뷰 컨트롤러
- native flutter view
- 앱 꺼졌을 때 푸시 데이터 저장
- 스위프트 푸시
- 스위프트 테이블 뷰 셀
- swift 문자
- FlutterView MethodChannel
- swift autolayout
- 스위프트 웹뷰
- flutter 회전
- Flutter NativeView
- 안드로이드 에러
- 안드로이드 숏컷
- 스위프트 카메라
- swift sms
- Swift flutterviewcontroller
- 안드로이드 FCM
- 앱 백그라운드 푸시 데이터 저장
- 스위프트 앨범
- 노티피케이션 익스텐션
- Swift flutterview
- 스위프트 UserDefaults
- flutter rotate
- 안드로이드 앨범
- 스위프트
- Flutter UIKitView MethodChannel
- 안드로이드 바로가기
- NotificationService Extension
Archives
- Today
- Total
Things take time
[SWIFT] UIImageView, UIScrollView를 이용한 Pinch To Zoom(확대 기능) 본문
[로직]
UIImagewView / UIScrollView를 이용하여 손가락 확대 기능을 구현한다.
안드로이드의 경우에는 구현이 어려워서, 이미지 뷰 전용 라이브러리를 통해 활용했지만, iOS는 간단하다.
한 줄 요약
UIScrollView를 부모로 하여 그 밑에 UIImageView를 넣고 설정하면 끝
[코드]
import UIKit class ViewController: UIViewController, UIScrollViewDelegate { @IBOutlet weak var scrollView: UIScrollView! @IBOutlet weak var imageView: UIImageView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. scrollView.alwaysBounceVertical = false scrollView.alwaysBounceHorizontal = false scrollView.minimumZoomScale = 1.0 scrollView.maximumZoomScale = 2.0 scrollView.delegate = self } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } @available(iOS 2.0, *) public func viewForZooming(in scrollView: UIScrollView) -> UIView? { return self.imageView } }
min은 최대한 축소했을 때의 최소 값, max는 최대한 줌했을 때의 최대 값(이미지 뷰 기준)
'iOS (기능)' 카테고리의 다른 글
[SWIFT] 공유하기! 방법 => Share Extension (0) | 2018.02.02 |
---|---|
[SWIFT] 공유하기! 방법 => Action Extension (0) | 2018.02.01 |
[SWIFT] mov 파일을 mp4 파일로 변환하기 / 동영상 재생시간 구하기(double to dateformat) (0) | 2018.01.30 |
[SWIFT] 앱 실행시 처음 시작되는 뷰 컨트롤러 지정하기 (0) | 2018.01.16 |
[SWIFT] APNS, 푸시에 관한 설정(receive event, click(tap) event) (0) | 2018.01.12 |