• Jan
  • Feb
  • Mar
  • Apr
  • May
  • Jun
  • Jul
  • Aug
  • Sep
  • Oct
  • Nov
  • Dec
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
  • 27
  • 28
  • 29
  • 30
  • 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
  • 31
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

UIScrollView scrollViewWillEndDragging 실습

func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>) {
        <#code#>
}

Parameters

velocity

The velocity of the scroll view (in points) at the moment the touch was released. 난 속력은 상관 없고 방향을 체크하는 용도로 사용!

velocity < 0 : 아래로 스크롤 velocity > 0 : 위로 스크롤

velocity가 params로 없는 함수에서는 아래와 같이 velocity 값을 detect 할 수 있는 듯

let offsetY = scrollView.contentOffset.y

targetContentOffset

The expected offset when the scrolling action decelerates to a stop.

오잉 근데 이 기능 사라짐 ㅎ