Three20,TTLauncherItem将图像设置为不在@“ bundle://12.png&rbsp;

如果TTLauncherItem的图像不是来自@“bundle://12.png”,但如下所示,它不会显示为图像。
    [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]];
是否不支持这种init?     
已邀请:
我不确定文件系统上图像的直接URL。 但我在我的项目中使用图像作为TTLauncherItem图像执行以下操作:
NSString* imageName  = @"my-sweet-icon.png";
UIImage* thumbnail = [UIImage imageNamed:@"mySweetImage.png"]; 
[[TTURLCache sharedCache] storeImage:thumbnail forURL:imageName]; 
TTLauncherItem* item1 =  [[[TTLauncherItem alloc] initWithTitle:@"Title"
                                                        image:imageName  
                                                        URL:@"tt://url" canDelete:NO] autorelease];
    
iOS应用无法访问您的本地文件系统。使用
documents
关键字代替
bundle
。快速查看代码表明它也处理嵌套目录。
@"documents://12.png"
来源:Three20源代码     

要回复问题请先登录注册