ios table set the image to url

i want to set the table image to specific url i get from json parsing is that possible?
if i set it to the value “artworkUrl60” <is the image url i get error
Dim cell As iOSTableCellData
cell = New iOSTableCellData( dt0.Value(“trackCensoredName”))
cell.DetailText = dt0.Value(“artistName”)
cell.image = dt0.Value(“artworkUrl60”) //<< type mismatch exception

Depending on how your image data is formatted, yes this is possible. You will need to use iOSImage.FromData after converting the “artworkUrl60” to a memory block. See: http://developer.xojo.com/iosimage$FromData

thank you jason i miss that :wink: