collectionView cell 이동
2016. 8. 4. 15:46ㆍProgramming/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
반응형
'Programming > Swift' 카테고리의 다른 글
UIViewController 라이프사이클 다이어그램 (0) | 2016.08.22 |
---|---|
Multi Return Values (0) | 2016.08.12 |
가로모드 일 경우 버튼 사이즈 조정 (0) | 2016.08.04 |
다른 class에서 struct값 가져올때.. (0) | 2016.08.04 |
특정 문자에 대한 분할(componentsSeparatedByString) (0) | 2016.08.03 |