How can I add an image to my table cell in swift?

user3766930

I'm following this tutorial and I'm creating cells for each json entry. Everything works fine without photos:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell = tableView.dequeueReusableCellWithIdentifier("CELL")

    if cell == nil {
        cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")
    }

    let user:JSON =  JSON(self.items[indexPath.row])
   // print(user)
    let picURL = "/Users/K/Desktop/aproject/apps/address/addr/Images.xcassets/TabMap.imageset/up_dark.png"//just for tests - some random png
    let url = NSURL(string: picURL)
    let data = NSData(contentsOfURL: url!)

    cell!.textLabel?.text = user["description"].string
 //   cell?.imageView?.image = UIImage(data: data!)

    return cell!
}

, but when I add photos (uncomment this line):

cell?.imageView?.image = UIImage(data: data!)

then I'm getting error:

enter image description here

fatal error: unexpectedly found nil while unwrapping an Optional value

My plan is to pass there an url instead of hardcoded photo (so using user["photo"] instead of the link), but for tests I pasted the url to my custom graphic.

How can I add it next to text?

Michael Dautermann

A couple things:

Why does the line before have "cell!" and the commented out line is "cell?". Also, is this a table view subclass? Are you sure your imageView outlet is connected?

More importantly, you should do an error check when loading your image data.

That is:

if let data = NSData(contentsOfURL: url!)
{
    cell!.imageView?.image = UIImage(data: data)
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I add the name of a contact to my table view cell?

From Dev

How can I add a UITapGestureRecognizer to a UILabel inside a table view cell? Swift2

From Dev

How can I add stickers to an image in Swift?

From Dev

How do I set the background image size of a table cell in swift?

From Dev

I want to add an image to a specific cell in my table within my aspx class

From Dev

How can I add an Image in my custom shape xml

From Dev

How can I add a background to my png image?

From Dev

How can I add an image to all pages of my PDF?

From Dev

How can I add an image header to my php mail form?

From Dev

how can I add an image in my database sqlite?

From Dev

How can I add links to my custom javascript image swap?

From Dev

How can I add a background to my png image?

From Dev

How can I add an Image in my custom shape xml

From Dev

How can I add a cart image in my navigation bar?

From Dev

How can I make my calculator add a Period in swift?

From Dev

How can I Add Friends in my QuickBlox Chat in Swift

From Dev

How can I programmatically add a Gradient Layer over an image in Swift?

From Dev

How can I add an object to my table with multiple values?

From Dev

How I can get values of headers of my table when I select a cell?

From Dev

how can i add button to this code to apply this effect on my image i am making an image editor app

From Dev

How to add a image in background in my view in swift?

From Dev

How can I add a button in a custom cell?

From Dev

Wrong image is set in my tableview cell sometimes when I scroll on my tableview. How can I fix this?

From Dev

iPhone how can i apply a pdf file as image on a table view cell

From Dev

How can I add a little green triangle at the bottom right of a table cell?

From Dev

MS Office Word - How can I add custom table/cell margins?

From Dev

How can I add a little green triangle at the bottom right of a table cell?

From Dev

How can i add an image with swing and how do i make it the size of my window?

From Dev

How can I add name, caption etc in my uploaded image to facebook in my android application?

Related Related

  1. 1

    How can I add the name of a contact to my table view cell?

  2. 2

    How can I add a UITapGestureRecognizer to a UILabel inside a table view cell? Swift2

  3. 3

    How can I add stickers to an image in Swift?

  4. 4

    How do I set the background image size of a table cell in swift?

  5. 5

    I want to add an image to a specific cell in my table within my aspx class

  6. 6

    How can I add an Image in my custom shape xml

  7. 7

    How can I add a background to my png image?

  8. 8

    How can I add an image to all pages of my PDF?

  9. 9

    How can I add an image header to my php mail form?

  10. 10

    how can I add an image in my database sqlite?

  11. 11

    How can I add links to my custom javascript image swap?

  12. 12

    How can I add a background to my png image?

  13. 13

    How can I add an Image in my custom shape xml

  14. 14

    How can I add a cart image in my navigation bar?

  15. 15

    How can I make my calculator add a Period in swift?

  16. 16

    How can I Add Friends in my QuickBlox Chat in Swift

  17. 17

    How can I programmatically add a Gradient Layer over an image in Swift?

  18. 18

    How can I add an object to my table with multiple values?

  19. 19

    How I can get values of headers of my table when I select a cell?

  20. 20

    how can i add button to this code to apply this effect on my image i am making an image editor app

  21. 21

    How to add a image in background in my view in swift?

  22. 22

    How can I add a button in a custom cell?

  23. 23

    Wrong image is set in my tableview cell sometimes when I scroll on my tableview. How can I fix this?

  24. 24

    iPhone how can i apply a pdf file as image on a table view cell

  25. 25

    How can I add a little green triangle at the bottom right of a table cell?

  26. 26

    MS Office Word - How can I add custom table/cell margins?

  27. 27

    How can I add a little green triangle at the bottom right of a table cell?

  28. 28

    How can i add an image with swing and how do i make it the size of my window?

  29. 29

    How can I add name, caption etc in my uploaded image to facebook in my android application?

HotTag

Archive