web-dev-qa-db-ja.com

Swiftソースファイルのエディタープレースホルダー

こんにちはSwiftエラー "ソースファイルのSwiftエディタープレースホルダー"に問題がありますこれは私のコードです

public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell{

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: <#T##IndexPath#>) as! CustomBrandCell

    let brandImage: UIImage = UIImage(named: self.brands[indexPath.row].name)!

    cell.brandImageView.image = brandImage

    return cell
}
4
Sina Hamzezadeh

Cmd + shift + kを試してプロジェクトをクリーンアップし、コードを再実行してください。これで問題が解決しました。

0
Techie