第一个 NSLog 返回正确的 URL 之后我收到此错误。
2013-07-06 21:07:56.622 社交应用 [69682:14003]-[NSURL stringByReplacingOccurrencesOfString:withString:]: 无法识别的选择器发送到实例 0x9a4ae10
videoURL = [[tableData objectAtIndex:indexPath.row] objectForKey:@"streamURL"];
NSLog(@"URL; %@", videoURL);
videoURL = [videoURL stringByReplacingOccurrencesOfString:@"http://www.youtube.com/watch?v=" withString:@""];
videoURL = [videoURL stringByReplacingOccurrencesOfString:@"&feature=youtube_gdata_player" withString:@""];
NSLog(@"URL; %@", videoURL);
任何帮助是极大的赞赏。