I have a xojo windows app that saves images locally and to an ftp server. I have created an associated ios app that also needs to display the same images and keep in sync with the desktop app. I currently am using CURLSMBS to do this, however it’s slow for each page to download and display the image. Is there a way to sync a custom folder on the iphone to the ftp site and just pull the already saved images to the ios app, making it quicker, only syncing when an image is not present. Essentially what I’m doing on the desktop side.
Figured it out, It was more an issue of determining how to save to IOS and retrieve and how the special folders work.
myfile = SpecialFolder.Documents.Child(“PlantMap”).Child(gPlantID + “.jpg”)
p = Picture.open(myfile)
PlantImage.Image = p