UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Day 23: Milestone Challenge Bonus Part

Forums > 100 Days of Swift

Hi,

I completed challenges for Day 23 Milestone Challenge, except bonus part. I could not add images of the countries in the view and I'm stuck in this bonus part.

First of All, I created new class for adding image view to prototype cell as below;

" class MyCell : UITableViewCell{

@IBOutlet weak var smallFlagPicture: UIImageView!
@IBOutlet weak var countryName: UILabel!

}"

After this, I changed the cellForRowAt part like this :

" override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: "Picture", for: indexPath) as! MyCell
    let item = flagPictures.sorted()[indexPath.row].uppercased()

    cell.countryName.text = item
    cell.smallFlagPicture?.image = UIImage(named: item)

    return cell

} "

I can see the names of the countries as i designed in main but images of the countries are not presented. How can i solve this issue?

3      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.