0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ScrollViewについて個人的メモ

Last updated at Posted at 2019-07-28

スクロール幅取得

override func scrollViewDidScroll(scrollView: UIScrollView) {
        contentOffset = scrollView.contentOffset
}

RxSwift

Rx-1.swift
         tableView.rx.contentOffset //contentOffsetが変化したとき実行 
             //$0がスクロール幅
            .map { hogehogeTransition($0.y) } //スクロール幅を何かしらに変換したいときはここ
            .subscribe(onNext: {
                hugahugaFunction($0.y) //スクロール幅を用いた何かしらの処理
            })
            .disposed(by: disposeBag)

このパターンもあるらしい
違いはあとで追記

Rx-2.swift
         tableView.rx.didScroll
            .withLatestFrom(tableView.rx.contentOffset)
            .map { hogehogeTransition($0.y) }
            .subscribe(onNext: {
                hugahugaFunction($0.y)
            })
            .disposed(by: disposeBag)

Scrollのパラメータ

こんがらがりがちな3つが図でまとまっている
contentSize , contentOffset , frame.size
UIScrollView(UITableView)のスクロール量を計算するときに確認する図 - Qiita

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?