タグ

UIScrollViewに関するharigelのブックマーク (2)

  • UICollectionViewでのCellごとのページング - shingt blog

    iOS端末の画面の上部分に横スクロールメニューを作りたいって場合、UICollectionViewを使うと割と簡単に作れる。 これがただスクロールするだけのもので良いなら楽なんだけど、ユーザがスクロールする毎にセル毎にページングさせて、そのセルを画面の中心に持ってきたい、って場合があった。 って言葉で書くと分かりにくいので画面例を出す。以下のように横に選択肢が並んでるイメージ。 この時に、メニュー部分を横にスクロールすると、途中で止まらずに勝手にセル毎にページング(ページングって言うのかあやしいけど)され、セルの中心が画面の中心に来るようになってほしい。ストアに出てるアプリを例に挙げるとMercariさんのような感じ。 Pressoさんとかはセルをタップしたらそのセルが中心になるように動くけど、それはdidSelectItemAtIndexPath内で座標指定してスクロールするようにすれば

  • A Beginner's Guide to UIScrollView

    In iOS, scroll views are used to view content that won’t fit entirely on the screen. Scroll views have two main purposes: To let users drag the area of the content they want to display To let users zoom in to or out of the displayed content using the pinch gestures A common control used in iOS apps – UITableView – is a subclass of UIScrollView and provides a great way to view content that is large

    A Beginner's Guide to UIScrollView
    harigel
    harigel 2015/09/24
    UIScrollViewでzoom等
  • 1