Swift equivalent of initWithContentsOfFile using image

703 Views Asked by At

In Objective C I was using this code to scale an image to my background. How can I achieve this in Swift.

path = [[NSBundle mainBundle] pathForResource:@"This" ofType:@"png"];
image = [[UIImage alloc] initWithContentsOfFile:path];
1

There are 1 best solutions below

1
On

you can try this:

path = NSBundle.mainBundle().pathForResource("This", ofType: "png")
image = UIImage(contentsOfFile: path)