gpt4 book ai didi

iphone - iOS - UIWebView 由于解析错误而无法正常工作

转载 作者:IT王子 更新时间:2023-10-29 07:56:49 26 4
gpt4 key购买 nike

我想在我的应用程序中播放 Youtube 视频。于是,我写了下面的代码

NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";

NSString* html = [NSString stringWithFormat:embedHTML, videoURL, self.view.frame.size.width, self.view.frame.size.height];

[videoView loadHTMLString:html baseURL:nil];

videoView 是一个 UIWebView。这工作得很好,直到后来, View 什么也没显示。只是一个空白的白色 View 。我得到了这个日志:

*** WebKit discarding exception: <NSRangeException> *** -[__NSCFString substringToIndex:]: Range or index out of bounds

最佳答案

使用:

http://www.youtube.com/v/XXXXXXX

代替:

http://www.youtube.com/watch?v=XXXXXXX

在这里找到:https://devforums.apple.com/message/705665#705665

关于iphone - iOS - UIWebView 由于解析错误而无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12399241/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com