collectionView cell 이동

2016. 8. 4. 15:46Programming/Swift

반응형

버튼을 클릭했을 경우 화면에 해당 collectionViewCell 위치로 이동할 수 있게 한다.

@IBAction func time00(sender: AnyObject) {

    self.collectionview?.scrollToItemAtIndexPath(NSIndexPath(forItem: 0, inSection: 0), atScrollPosition: .Left, animated: true)


forItem 은 이동하는 셀로우 : IndexPath.row 라고 생각하면 될 듯..

atScrollPosition 은 화면에 어떤 위치를 기준으로 삼아서 해당 셀을 보여 줄 것인지 : .Top, .Bottom, .Left, .Right

반응형