0

我有一个应用程序,它解析 URL 链接的 JSON 提要,然后将这些 URL 存储在字符串中。这很好用,但是 URL 链接如下所示:

(
"http://instagram.com/p/cCEfu9hUxG/"
)

如何去掉 URL 末尾的括号和撇号?

我需要在 UIWebView 中打开 URL,但由于括号和撇号位于 URL 的末尾,我不能。

JSON 提要中的信息正在 UITableView 中呈现。当用户点击 UITableView 的其中一个单元格时,该单元格的相关 URL 将存储在 NSString 中,然后我的 UIWebView 将读取该 NSString。这是我的代码:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

int storyIndex = [indexPath indexAtPosition: [indexPath length] - 1];

NSString *storyLink = [[[[_dataSource objectAtIndex: storyIndex] objectForKey:@"entities"] objectForKey:@"urls"] valueForKey:@"expanded_url"];

//[webviewer loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:storyLink]]];
NSLog(@"\n\n LINK: %@", storyLink);

[UIView beginAnimations:@"animateAdBannerOn" context:NULL];
[UIView setAnimationDuration:1.2];
webviewer.alpha = 1.0;
[UIView commitAnimations];

}

我是 NSString 中的 URL。

这是 JSON 提要:

{
"coordinates": null,
"favorited": false,
"truncated": false,
"created_at": "Sat Aug 25 17:26:51 +0000 2012",
"id_str": "239413543487819778",
"entities": {
  "urls": [
    {
      "expanded_url": "https://dev.twitter.com/issues/485",
      "url": "https://t.co/p5bOzH0k",
      "indices": [
        97,
        118
      ],
      "display_url": "dev.twitter.com/issues/485"
    }
  ],
  "hashtags": [

  ],
  "user_mentions": [

  ]
}

谢谢,丹。

4

1 回答 1

1

您的NSLog输出表明

NSString *storyLink = [[[[_dataSource objectAtIndex: storyIndex]
                         objectForKey:@"entities"]
                        objectForKey:@"urls"]
                       valueForKey:@"expanded_url"];

没有NSString按预期返回一个,而是一个NSArray. JSON对象中的值可能"urls"是字典数组而不是单个字典吗?在这种情况下,以下应该起作用:

NSString *storyLink = [[[[[_dataSource objectAtIndex: storyIndex]
                           objectForKey:@"entities"]
                          objectForKey:@"urls"]
                         objectAtIndex:0]
                        objectForKey:@"expanded_url"];

如果您显示 JSON 输出,可能会有更具体的答案。

评论:

int storyIndex = [indexPath indexAtPosition: [indexPath length] - 1];

可以简化为

int storyIndex = indexPath.row;

(请参阅“NSIndexPath UIKit 添加”。)

更新:为了进一步本地化您的问题,我建议您将代码拆分为单独的命令,并检查"urls"数组是否为空:

NSDictionary *dict = [_dataSource objectAtIndex: storyIndex];
NSDictionary *entities = [dict objectForKey:@"entities"];
NSArray *urls = [entities objectForKey:@"urls"];
if ([urls count] > 0) {
    NSDictionary *firstUrl = [urls objectAtIndex:0];
    NSString *storyLink = [firstUrl objectForKey:@"expanded_url"];
    NSLog(@"LINK: %@", storyLink);
} else {
    NSLog(@"URLS is an empty array!!");
}

如果它仍然崩溃,请设置“所有 Objective-C 异常上的断点”以检查它崩溃的确切位置。

于 2013-07-21T17:36:06.770 回答