-6
が、私はこのコードを持っていないが、それはいつも私を示していますは、なぜ私が手に入れた:タイプ「どれが」は添字メンバー
タイプは「任意」は「私はドンノー添字メンバー
を持っています何が起こったか知っている。 は、事前に皆さんに感謝し、私は知らないので:(
import UIKit
class PicturesViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource {
var posts = NSDictionary()
override func viewDidLoad() {
super.viewDidLoad()
posts = ["username" : "Hello"]
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return posts.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! PostCollectionViewCell
cell.usernameLbl.text = posts[indexPath.row]!["username"] as? String
cell.PictureImg.image = UIImage(named: "ava.jpg")
return cell
}
}