I load a huge-huge image with imageWithContentsOfFile:, so I have to set up an activityIndicator during the process.
Is there any way/any delegate callback I can use to be informed about the end of this loading process?
|
|
If you want to have a delegate & be informed of the progress of the load, you can use an There's an example of this in the Apple URL Loading System Programming Guide Your NSURLConnection delegate This gives you the most flexibility/control over monitoring the progress of the load; although if all you're trying to do is avoid hanging the UI while the image downloads, simply using |
|||
|
|
|
You could start an activity indicator, load your big image into memory in a background thread and then go back to the main thread and stop the indicator.
|
|||
|
|
|
Short answer: Nope. sorry! Long answer : You could open the file in a background process (an NSOperation?) bit by bit using C style methods i.e. fopen, fread etc) and fire notifications back to the main thread during the load. Then create the image and fire a notification that the image is ready? |
|||
|
|