tvOS load lcr image file in a UIImageView

301 Views Asked by At

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];
1

There are 1 best solutions below

0
sanjana On

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.