I am new to iOS swift
programming really need help!
I downloaded images from url and saved to the path /Users/mymac/Library/Developer/CoreSimulator/Devices/583C02D5-9A88-4756-9044-CD6DB4DCB57C/data/Containers/Data/Application/699F623B-000B-4365-B451-CA3104AD958B/Documents/Images
Now i am able load images ImageView
by specifying the name manually
var fileName = "Images/1A_Dorsal aspect.jpg"
var paths = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as NSString
var getImagePath = paths.stringByAppendingPathComponent(fileName)
imageLoad.image = UIImage(contentsOfFile: getImagePath)
what i need is load the image using the number (i.e 25 images are in my folder Images) using for loop i want to load the images one by one like Android(Java)