<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 7 tips for using UIWebView</title>
	<atom:link href="http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/</link>
	<description>Kerem Karatal’s musings on code, technology and more…</description>
	<lastBuildDate>Mon, 12 Jul 2010 07:42:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jyothi</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-189</link>
		<dc:creator>Jyothi</dc:creator>
		<pubDate>Mon, 12 Jul 2010 07:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-189</guid>
		<description>&lt;p&gt;Hi, 
Can you guys give some hints about the UNDOCUMENTED APIs to have the checkerboard pattern for uiwebview. For the pages with large contents , zooming and scrolling is not smooth.&lt;/p&gt;

&lt;p&gt;I know that private APIs can do it . Any help please?&lt;/p&gt;

&lt;p&gt;Thanks in Advance.&lt;/p&gt;

&lt;p&gt;-J&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi, 
Can you guys give some hints about the UNDOCUMENTED APIs to have the checkerboard pattern for uiwebview. For the pages with large contents , zooming and scrolling is not smooth.</p>

<p>I know that private APIs can do it . Any help please?</p>

<p>Thanks in Advance.</p>

<p>-J</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Prakash Yogarajah</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-188</link>
		<dc:creator>Prakash Yogarajah</dc:creator>
		<pubDate>Sat, 10 Jul 2010 07:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-188</guid>
		<description>&lt;p&gt;Apple has some iPhone specific META tags that can disable the zoom.&lt;/p&gt;

&lt;p&gt;Add: 
    &lt;/p&gt;

&lt;p&gt;into your HEAD section of your HTML, et voila, no more user zooming.&lt;/p&gt;

&lt;p&gt;http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html#//apple_ref/doc/uid/TP40008193&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Apple has some iPhone specific META tags that can disable the zoom.</p>

<p>Add: 
    </p>

<p>into your HEAD section of your HTML, et voila, no more user zooming.</p>

<p><a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html#//apple_ref/doc/uid/TP40008193" rel="nofollow">http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html#//apple_ref/doc/uid/TP40008193</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: nico</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-187</link>
		<dc:creator>nico</dc:creator>
		<pubDate>Thu, 01 Jul 2010 15:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-187</guid>
		<description>&lt;p&gt;To disable zooming you can put this in your html page:
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>To disable zooming you can put this in your html page:
</p>]]></content:encoded>
	</item>
	<item>
		<title>By: René Retz</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-185</link>
		<dc:creator>René Retz</dc:creator>
		<pubDate>Thu, 24 Jun 2010 20:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-185</guid>
		<description>&lt;p&gt;I think it&#039;s better call Objective-C methods with window.open(&quot;&quot;) rather than document.location = &quot;&quot; . Than you can continue precess your javascript;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I think it&#8217;s better call Objective-C methods with window.open(&#8220;&#8221;) rather than document.location = &#8220;&#8221; . Than you can continue precess your javascript;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tobiah</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-184</link>
		<dc:creator>Tobiah</dc:creator>
		<pubDate>Thu, 24 Jun 2010 18:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-184</guid>
		<description>&lt;p&gt;Your override of hitTest has helped me so much. I was trying to figure out how to detect clicks using a dummy class and all sorts of hassle, but your just made it extremely easy for what I needed to detect the click for. Thank you very much!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Your override of hitTest has helped me so much. I was trying to figure out how to detect clicks using a dummy class and all sorts of hassle, but your just made it extremely easy for what I needed to detect the click for. Thank you very much!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2010-06-07 &#124; Alones world</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-181</link>
		<dc:creator>links for 2010-06-07 &#124; Alones world</dc:creator>
		<pubDate>Tue, 08 Jun 2010 01:35:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-181</guid>
		<description>&lt;p&gt;[...] 7 tips for using UIWebView &#124; Coding Ventures (tags: tips iphone_dev uiwebview ui sample) [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] 7 tips for using UIWebView | Coding Ventures (tags: tips iphone_dev uiwebview ui sample) [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Gonso</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-177</link>
		<dc:creator>Gonso</dc:creator>
		<pubDate>Thu, 29 Apr 2010 07:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-177</guid>
		<description>&lt;p&gt;great tips!!!!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>great tips!!!!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mserougi</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-176</link>
		<dc:creator>mserougi</dc:creator>
		<pubDate>Tue, 20 Apr 2010 00:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-176</guid>
		<description>&lt;p&gt;Is there a way one can auto-scroll UIWebView? I know of &quot;window.location.hash&quot; but I am looking for a &quot;smooth&quot; scroll and not the &quot;jump&quot; the previous code does. Any thoughts?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is there a way one can auto-scroll UIWebView? I know of &#8220;window.location.hash&#8221; but I am looking for a &#8220;smooth&#8221; scroll and not the &#8220;jump&#8221; the previous code does. Any thoughts?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2010-02-24 at ≈ Relations</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-174</link>
		<dc:creator>links for 2010-02-24 at ≈ Relations</dc:creator>
		<pubDate>Thu, 25 Feb 2010 01:06:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-174</guid>
		<description>&lt;p&gt;[...] 7 tips for using UIWebView &#124; Coding Ventures For an IPhone app I have been building, I decided to use the UIWebView to render SVG files, instead of doing the vector rendering myself. I needed to have a way to read-in files generated from a vector authoring tool (Illustrator etc.) and after initially looking for an open-source SVG parsing/rendering engine of some sort, I decided on hosting the UIWebView itself instead and use the SVG rendering capability of WebKit. (tags: content tutorial svg cocoatouch uiwebview javascript) [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] 7 tips for using UIWebView | Coding Ventures For an IPhone app I have been building, I decided to use the UIWebView to render SVG files, instead of doing the vector rendering myself. I needed to have a way to read-in files generated from a vector authoring tool (Illustrator etc.) and after initially looking for an open-source SVG parsing/rendering engine of some sort, I decided on hosting the UIWebView itself instead and use the SVG rendering capability of WebKit. (tags: content tutorial svg cocoatouch uiwebview javascript) [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Weiler</title>
		<link>http://www.codingventures.com/2008/12/using-uiwebview-to-render-svg-files/comment-page-1/#comment-171</link>
		<dc:creator>Alan Weiler</dc:creator>
		<pubDate>Tue, 02 Feb 2010 06:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.codingventures.com/?p=31#comment-171</guid>
		<description>&lt;p&gt;You have 3 snippets for the JavaScript calls Objective-C section.  The second two make sense to me, but I don&#039;t know exactly what this line indicates:&lt;/p&gt;

&lt;p&gt;myapp:myfunction:myparam1:myparam2&lt;/p&gt;

&lt;p&gt;I can see it is referring to a function and params, but I don&#039;t know how to use it.&lt;/p&gt;

&lt;p&gt;Is this a protocol in Objective-C?  I don&#039;t recognize the format.&lt;/p&gt;

&lt;p&gt;Making a connection between JavaScript and Objective-C is a key capability for us.  It would be great to get some more information about how this works.  I have played with Phonegap, but have run into problems with that framework... and in any case I would prefer to have more control, if I can.&lt;/p&gt;

&lt;p&gt;Thanks for a great post.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You have 3 snippets for the JavaScript calls Objective-C section.  The second two make sense to me, but I don&#8217;t know exactly what this line indicates:</p>

<p>myapp:myfunction:myparam1:myparam2</p>

<p>I can see it is referring to a function and params, but I don&#8217;t know how to use it.</p>

<p>Is this a protocol in Objective-C?  I don&#8217;t recognize the format.</p>

<p>Making a connection between JavaScript and Objective-C is a key capability for us.  It would be great to get some more information about how this works.  I have played with Phonegap, but have run into problems with that framework&#8230; and in any case I would prefer to have more control, if I can.</p>

<p>Thanks for a great post.</p>]]></content:encoded>
	</item>
</channel>
</rss>
