0

Using tvOS, how am I able to load a LCR image file in an image view using objective-c? I tried something like this but it didn't work out:

NSURL *imagePostedURL = [NSURL URLWithString:[dict objectForKey:@"image"]];

[self.img setImageWithURL:imagePostedURL];
Logan Wayne
  • 6,001
  • 16
  • 31
  • 49
Nick Lasta
  • 121
  • 1
  • 8

1 Answers1

0

Hey I was facing exactly same issue but I am doing it in Swift. I could find a work around for this problem and here is link of my question and answer: Unable to load LCR image in tvOS apps

Basically you need to save .lcr file in local system and then use it. I explained with code sample in my answer.

Community
  • 1
  • 1
sanjana
  • 3,034
  • 2
  • 25
  • 31