应用程序加载时预先选择状态的问题

时间:2017-01-26 22:32:50

标签: ios swift3 collectionview nsindexpath

我正在尝试在应用加载时有一个预先选择的状态但是收到此代码的错误。不确定有什么问题...提前谢谢。

tabs-outer

1 个答案:

答案 0 :(得分:0)

您需要根据您的要求在Main Dispatch中调用预先选择的单元代码: -

Swift 3.0

选择水平单元格

DispatchQueue.main.async {
    self.collectionDate.scrollToItem(at: IndexPath(row: index, section: 0), at: .centeredHorizontally, animated: true)
}

选择垂直单元格

DispatchQueue.main.async {
      self.collectionDate.scrollToItem(at: IndexPath(row: index, section: 0), at: .centeredVertically, animated: true)
}