TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

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 String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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.