谁能帮我解决这个问题,我试图创建多个 webview,每个 webview 将包含不同的链接。我现在做的方式是我可以创建 5 个 webview 但只包含 1 个链接。这是代码
NSInteger i;
int xCoord = 0;
int yCoord = 0;
int webWidth = 80;
int webHieght = 80;
int buffer = 10;
for (i = 1; i <=5; i++)
{
UIWebView *video =[[UIWebView alloc] initWithFrame:CGRectMake(xCoord , yCoord, webWidth, webHieght)];
NSString *link = @"<iframe width=\"70\" height=\"70\" src=\"http://www.youtube.com/embed/BELlZKpi1Zs\" frameborder=\"0\" allowfullscreen></iframe>";
[video loadHTMLString:link baseURL:nil];
[video setBackgroundColor:[UIColor clearColor]];
[video setOpaque:NO];
[scrollview addSubview:video];
yCoord += webHieght + buffer;
提前致谢。