4

我是 iOS 新手,我正在尝试使用 SVGKit 在我的应用程序中呈现 svg 文件。我想从 URL 加载 svg 文件,但无法正常工作。我收到以下错误:

线程 1:EXC_BAD_Access(代码 = 2,地址 =0x0)

在以下行:NSLog(@"[%@] SVGKit Parse error: %@", [self class], *error);在 SVGDocument.m 文件中。我尝试通过使用已经存在的 SVGPad 示例来实现从 URL 加载文件,该示例可以完美地加载图片,但不能从 URL 加载。我使用此代码从 URL 加载图片:

NSString *urlString = [NSString stringWithFormat:@"http://upload.wikimedia.org/wikipedia/commons/6/66/Blank_Map-Africa.svg"];
NSURL *url = [NSURL URLWithString:[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
SVGDocument* svgDocument = [SVGDocument documentFromURL:url];
self.contentView = [[[SVGView alloc] initWithDocument:svgDocument] autorelease];

我还尝试使用以下代码创建和我的简单应用程序,该应用程序仅从本地文件加载十张简单图片:

SecondViewController *vc = [[SecondViewController alloc] init];
NSString* svgFilename = [@"/Users/XCode Projects/SVGLink/Beastie" stringByAppendingPathExtension:@"svg"];
SVGDocument *svgDocument = [SVGDocument documentWithContentsOfFile:svgFilename];
 vc.view = [[SVGView alloc] initWithDocument:svgDocument];
[self.window setRootViewController:vc];

我得到的只是这个错误:[SVGDocument] DEBUG INFO: set document viewBox = {{0, 0}, {340.961, 377.75}}

有人可以解释我在哪里犯错误吗?

我使用了这些版本的 SVGKit: https ://github.com/SVGKit/SVGKit/

谢谢,莉莉

编辑:

这个 SVG 工具包版本https://github.com/meric/SVGKit可以完美地从 url 链接加载 .svg 文件,但我仍然从文件中遇到解析错误,如脚本和其他无法识别的东西。UIWebView 中的相同文件完美显示。我想迁移到 SVG 解析器的唯一原因是,在旋转时 UIWebView 和 SVG 图形会降低几步,而我找不到修复该问题的方法。

4

1 回答 1

2
于 2012-09-04T16:35:30.293 回答