if the image of TTLauncherItem is not from @"bundle://12.png" but as the following, it would not appear as a image.
[pageArray addObject:[[[TTLauncherItem alloc] initWithTitle:[titleArray objectAtIndex:(j+i*pageCount)]
image:@"/Users/alex/Library/Application Support/iPhone Simulator/4.1/Applications/457F60DD-86EF-42E3-95F5-3BFC7C223987/Documents/magazine_covers/12.png"
URL:@"tt://setUp"
canDelete:NO] autorelease]];
Does this kind of init is not supported?
iOS apps have no access to your local filesystem. Use the
documents
keyword instead of thebundle
. A quick look at the code shows that it handles nested directories too.Source: Three20 source code