如本 YouTube教程中所述,我将从 UIWebView 创建 YouTube 播放器。但是当我尝试使用格式初始化字符串时,我收到 EXC_BAD_ACCESS code=1 这是我的代码:
NSString *youTubeVideoHTML = [NSString stringWithFormat:@"<html><head> <meta name =
\"viewport\" content = \"initial-scale = 1.0, user-scalable = no, width = 212\"/></head>
<body style=\"background:Black;margin-top:100px;margin-left:100px\"> <div><object
width=\"212\" height=\"172\"><param name=\"movie\" value=\"%@\"></param> <param
name=\"wmode\" value=\"transparent\"></param> <embed src=\"%@\" type=\"application/x-
shockwave-flash\" wmode=\"transparent\" width=\"212\" height=\"172\"></embed> </object>
</div></body></html>",myYoutubeLink];
我试图直接链接到 youtube 视频而不是 %@,效果很好。但我需要放任何 youtube 网址。我的错误在哪里?我无法创建字符串。