菜鸟教程小白 发表于 2022-12-13 09:22:27

ios - 为什么要在 UIWebView 中模拟触摸?


                                            <p><p>我觉得这段代码很有趣。但是我不明白为什么要在 UIWebView 中模拟触摸?</p>

<pre><code>enter code here
- (void)embedYouTube:(NSString *)urlString frame:(CGRect)frame {
NSString *embedHTML = @&#34;&lt;html&gt;&lt;head&gt;\
&lt;body style=\&#34;margin:0\&#34;&gt;\
&lt;embed id=\&#34;yt\&#34; src=\&#34;%@\&#34; type=\&#34;application/x-shockwave-flash\&#34; \
width=\&#34;%0.0f\&#34; height=\&#34;%0.0f\&#34;&gt;&lt;/embed&gt;\
&lt;/body&gt;&lt;/html&gt;&#34;;
NSString *html = ;
UIWebView *videoView = [ initWithFrame:frame];
;
;
;

;

}

- (void)touchInView:(UIView*)view{
UITouch *touch = [ initInView:view];
UIEvent *eventDown = [ initWithTouch:touch];

withEvent:eventDown];

;
UIEvent *eventUp = [ initWithTouch:touch];

withEvent:eventUp];

;
;
;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>就像我在评论中发布的那样回答这个问题:它是为了“自动启动”一个 youtube 视频。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么要在 UIWebView 中模拟触摸?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7751542/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7751542/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么要在 UIWebView 中模拟触摸?