我UICollectionView
在我的 swift 课上使用它,它放在我的UIViewController
. 我在我的代码中将 collectionView 连接到了插座,我进行了设置,delegate
然后datasource
在我的应用程序中看到了结果。除了当我单击每个单元格时,一切正常 - 没有任何反应。
我的代码如下:
class UsersList: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate {
@IBOutlet weak var tview: UICollectionView!
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
tview.backgroundColor = UIColor.whiteColor() //this works
tview.delegate = self
tview.dataSource = self
}
func collectionView(tview: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
print("You selected cell #\(indexPath.item)!")
//this does not appear in the console :(
}
我还能做些什么来在控制台中查看打印信息吗?