Note that there are some explanatory texts on larger screens.

plurals
  1. POgetting weird printed statement in the console
    primarykey
    data
    text
    <p>I am embedding a youtube link in my apps like below</p> <pre><code>- (void)embedYouTube:(NSString *)urlString frame:(CGRect)frameSize inView:(UIImageView*)imageView { NSString *embedHTML = @"\ &lt;html&gt;&lt;head&gt;\ &lt;style type=\"text/css\"&gt;\ body {\ background-color: transparent;\ color: white;\ }\ &lt;/style&gt;\ &lt;/head&gt;&lt;body style=\"margin:0\"&gt;\ &lt;embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \ width=\"%0.0f\" height=\"%0.0f\"&gt;&lt;/embed&gt;\ &lt;/body&gt;&lt;/html&gt;"; NSString *html = [NSString stringWithFormat:embedHTML, urlString, frameSize.size.width, frameSize.size.height]; videoView = [[UIWebView alloc] initWithFrame:frameSize]; [videoView loadHTMLString:html baseURL:nil]; [imageView addSubview:videoView]; } </code></pre> <p>However, when I am playing the video and a console is throwing a long test like below to me</p> <pre><code>setting movie path: http://r20---sn-tt17rn7s.c.youtube.com/videoplayback?fexp=917000%2C906357%2C923121%2C914071%2C916624%2C920704%2C912806%2C902000%2C922403%2C922405%2C929901%2C913605%2C925006%2C906938%2C931202%2C908529%2C904830%2C920201%2C930101%2C930603%2C906834%2C926403%2C913570%2C901451&amp;newshard=yes&amp;cp=U0hVR1ZMUF9GS0NONV9ORlRDOlZKNFRXTmNDY2NS&amp;sver=3&amp;itag=18&amp;mt=1362588975&amp;id=6e1254edbdac474b&amp;ms=au&amp;mv=m&amp;source=youtube&amp;sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&amp;ipbits=8&amp;ratebypass=yes&amp;expire=1362612211&amp;ip=66.207.201.14&amp;key=yt1&amp;upn=3o0EU_taOns&amp;cpn=6QDoUVzCQUiAeBqm&amp;signature=C609660EDEB083FFC1ABD1F781EDA222B6F04C66.CA4A052F0E17C10D866EB3D302A258571322C185 </code></pre> <p>I did search <code>setting move path</code> in my code but <code>no recored found</code>. Where the heck comes from and how to get rid of this. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload