1
3

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.

Swift3でスクロール画面で固定されたビューを実現するには

Posted at

参照

スクロール画面で固定されたビューを実現するには

01.gif

実装

contentOffsetを使えばスクロール画面で固定されたビューを実現することができます。



func scrollViewDidScroll(_ scrollView: UIScrollView) {

        // スクロール中の処理
        print("didScroll")

        固定させたいビュー.frame = CGRect(x:0+scrollView.contentOffset.x, y:0, width:0, height:0)
        

    }


1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?