我想填充此应用程序,但使用pdf而不是字符串。我能怎么做 ?我想这是在函数 - (void)createContentPages ...非常感谢你的帮助。
这是使用的示例代码:
http://www.techotopia.com/index.php/An_Example_iOS_5_iPhone_UIPageViewController_Application
我更改了createContentPages,但它确实很糟糕,正常我猜,它只显示图像的路径(我尝试使用图像,看起来更容易......):
- (void) createContentPages
{
NSFileManager *filemgr;
NSArray *filelist;
int count;
int j;
j = 0;
NSMutableArray *pageStrings = [[NSMutableArray alloc] init];
filemgr = [NSFileManager defaultManager];
filelist = [filemgr contentsOfDirectoryAtPath:[NSString stringWithFormat:@"%@/img", [[NSBundle mainBundle] bundlePath]] error:NULL];
count = [filelist count];
for (int i = 0; i < 3; i++)
{
NSString *path = [NSString stringWithFormat:@"%@/img/Diapositive", [[NSBundle mainBundle] bundlePath]];
NSString *intString = [NSString stringWithFormat:@"%d", i];
NSString *concatinatedString = [path stringByAppendingString:intString];
NSString *final = [concatinatedString stringByAppendingString:@".png"];
[pageStrings addObject: final];
}
pageContent = [[NSArray alloc] initWithArray:pageStrings];
}
答案 0 :(得分:1)
在您引用的示例代码中,基本视图是UIWebView,它将内容解释为HTML。只是传入文件路径将无法正常工作。如果您想要内容,则必须将其包装在适当的HTML页面中。