まず、単純にUICollectionViewを表示するプロジェクトを作成しておきます。セルにラベルを用意して、番号を表示させているだけです。storyboardで、セルに色を付けておくと動作チェックがやりやすいかと思います。
ViewController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var collectionView: UICollectionView! | |
var numbers: [Int] = [] | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
for n in 0..<100 { | |
numbers.append(n) | |
} | |
} | |
} |
UICollectionViewDataSourceとUICollectionViewDelegateへの、selfのセットがありませんが、storyboard上で設定しておくと良いと思います。
![]() |
右ドラッグで、クイっと。 |
ViewController+UICollectionViewDataSource.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension ViewController: UICollectionViewDataSource { | |
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { | |
return numbers.count | |
} | |
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { | |
let kReorderCardsCollectionViewCell = "CollectionViewCell" | |
let c = collectionView.dequeueReusableCell(withReuseIdentifier: kReorderCardsCollectionViewCell, for: indexPath) | |
guard let cell = c as? CollectionViewCell else { | |
return c | |
} | |
cell.label.text = "\(numbers[indexPath.item])" | |
return cell | |
} | |
} |
![]() |
忘れがちですね、reuse idの設定 |
ViewController+UICollectionViewDelegate.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension ViewController: UICollectionViewDelegate { | |
} |
CollectionViewCell.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class CollectionViewCell: UICollectionViewCell { | |
@IBOutlet weak var label: UILabel! | |
} |
これで実行すれば、とりあえずCollectionViewが表示されます。
![]() |
とりあえず表示だけ |
この状態のプロジェクトは次回にまた使うので、コミットをしておいてください。単純にコピーして取っておいてもかまいません。
♪ ♪ ♪
さて、ここから並べ替えが出来るように修正します。行うことは3つだけです。
- CollectionViewのセルの移動を可能にする。
- セルの移動処理を追加する。
- ロングタップのリスナーを登録する
ViewController+UICollectionViewDataSource.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension ViewController: UICollectionViewDataSource { | |
//省略// | |
func collectionView(_ collectionView: UICollectionView, canMoveItemAt indexPath: IndexPath) -> Bool { | |
return true | |
} | |
func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) { | |
reorderCells(sourceIndex: sourceIndexPath.item, destinationIndex: destinationIndexPath.item) | |
} | |
// MARK: - PRIVATE METHODS | |
/// セルの移動 | |
/// | |
/// - Parameters: | |
/// - sourceIndex: 移動元の位置 | |
/// - destinationIndex: 移動先の位置 | |
private func reorderCells(sourceIndex: Int, destinationIndex: Int) { | |
let n = numbers.remove(at: sourceIndex) | |
numbers.insert(n, at: destinationIndex) | |
} | |
} |
移動したときの挙動を、collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath)に書きます。この例では元データの配列を移動しているだけです。
ViewController+LongPress.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension ViewController { | |
/// セルの長押しのリスナーの登録 | |
func addLongPressGestureListner() { | |
let longPressGesture = UILongPressGestureRecognizer(target: self, action: #selector(handleLongGesture(gesture:))) | |
collectionView.addGestureRecognizer(longPressGesture) | |
} | |
// MARK: - PRIVATE METHODS | |
/// セルの長押しジェスチャーのアクション | |
/// | |
/// - Parameters: gesture | |
@objc | |
private func handleLongGesture(gesture: UILongPressGestureRecognizer) { | |
switch gesture.state { | |
case .began: | |
guard let selectedIndexPath = collectionView.indexPathForItem(at: gesture.location(in: collectionView)) else { | |
break | |
} | |
collectionView.beginInteractiveMovementForItem(at: selectedIndexPath) | |
case .changed: | |
collectionView.updateInteractiveMovementTargetPosition(gesture.location(in: gesture.view)) | |
case .ended: | |
collectionView.endInteractiveMovement() | |
default: | |
collectionView.cancelInteractiveMovement() | |
} | |
} | |
} |
ViewController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var collectionView: UICollectionView! | |
var numbers: [Int] = [] | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
for n in 0..<100 { | |
numbers.append(n) | |
} | |
addLongPressGestureListner() //セルの長押しのリスナーの登録 | |
} | |
} |
これで、セルの移動が可能になります。
めでたし、めでたし。で、「UICollectionViewの並び替え(iOS11編)」に続きます。