私はこのコード私が困惑リフレッシュを使用してセグエする方法ですよ何ランダムに目立たせる索引を使用して更新する?
let refreshControl = UIRefreshControl()
refreshControl.addTarget(self, action: #selector(ViewController.refreshLoad), for: .valueChanged)
collectionViewIBO.addSubview(refreshControl)
を使用して、私のCollectionViewにUIRefreshControl
を設定しました。現在、私のモデルdatasource.model[indexPath.row]
にはdidSelectItemAt
を使用しています。私はInt(arc4random_uniform(UInt32(model.count)))
を使用し、ランダムなインデックスを取得するために知っているこの関数の内部
func refreshLoad() {
print("refresh")
self.collectionViewIBO.reloadData()
stopRefresher()
}
にセグエするランダムなインデックスを選択することができるようにしたいです。しかし、私はこの機能をdidSelectItemAt
と同じ動作をさせるためにどのように呼びますか?
あなたの 'didSelectItemAt'の外観は何ですか? – toddg