Re: Prepare image usage

2013-08-05 Thread Gerry Orkin
> So i can use: get URL tFile and then save to a folder inside the ipad app. Yep. I'd probably .zip a folder with the initial thumbnails that gets downloaded and expanded the first time your app runs. Expand them into a thumbnails folder that you create inside the Documents folder on the device.

Re: Prepare image usage

2013-08-05 Thread Jim sims
Hi Gerry, Thank you for your patience on this. Am a bit new to iOS - an ios newbie with limited exposure to this. Been away from this tech world a while. So i can use: get URL tFile and then save to a folder inside the ipad app. Like the example in the dictionary for specialfolderpath("cache")

Re: Prepare image usage

2013-08-04 Thread Gerry Orkin
I might have missed something but why not download the images the first time the app ever loads (and store them locally)? As I understand it you'll need to do that for all the images only the first time it loads, and then from time to time just download updates? Once downloaded you could cache

Re: Prepare image usage

2013-08-04 Thread Jim sims
Just did a test that displayed the list of file urls taken from a tab delim text file on a server. Ran it in the iPad simulator. It reported start of the repeat with an answer that showed me the correct files It then looped through all files i wanted and correctly displayed the url I put a one

Re: Prepare image usage

2013-08-04 Thread Gerry Orkin
Whoops. Sorry. Yes, you have the right idea. That should work. I believe you can also set the size of the image cache using imageCacheLimit - that will maximise the chance that your images won't be flushed from the cache. I have no idea if the image cache persists across app restarts but based o

Re: Prepare image usage

2013-08-04 Thread Gerry Orkin
prepare image file "http://yourserver.com/logos/logo.jpg";... ...should do it. Assuming of course that it works on online images... Gerry On 05/08/2013, at 3:28 PM, Jim sims wrote: > I have 100 thumbnail images on a server that I want to use and reuse, in a > very quick display manner.

Prepare image usage

2013-08-04 Thread Jim sims
I'm trying to understand proper use of "prepare image" prepare image "myImage" prepare image file "/Disk/Folder/logo.jpg" If anyone knows, please tell me if this usage sounds correct. I have 100 thumbnail images on a server that I want to use and reuse, in a very quick display manner. When