i have an application that uses images as content.
There are twelve images each inside a div (#page_1 -> #page_12).
But when I launch the application on an iPad, sometimes some images are missing.
Some pages are displayed ok, but it could be that some pages are not
displayed and just a placeholder (on iPad the white questionmark on
blue ground) is displayed.
Every single image is in the list of preloading images.
Any ideas to fix this?
The preloading code is as following:
var jQT = new jQuery.jQTouch({
debug: false,
preloadImages: [
'images/background.jpg',
'images/iPad_1/de/page_1.jpg',
'images/iPad_1/de/page_2.jpg',
'images/iPad_1/de/page_3.jpg',
'images/iPad_1/de/page_4.jpg',
'images/iPad_1/de/page_5.jpg',
'images/iPad_1/de/page_6.jpg'
]
});
So it should work - I think!
On Mon, Apr 4, 2011 at 5:14 PM, avoision <feli...@gmail.com> wrote:
> Here's a question I have: you say that these images are in some kind
> of preloading list? Are the images packaged with your app, or are they
> being downloaded from some external location?
>
> I've not done any work on an iPad, but my thought would be to verify
> that you can actually view each of your images. Doing something a
> basic as placing them all on a blank page would be a start. That way
> you could isolate whether it was an issue with your preloader code, an
> issue with your images... or just something weird with deploying out
> to your device.