WWDC24 SALE: Save 50% on all my Swift books and bundles! >>

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      

Save 50% in my WWDC sale.

SAVE 50% To celebrate WWDC24, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

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.