<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Codec &#187; UIWebView</title>
	<atom:link href="http://www.trembl.org/codec/tag/uiwebview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.trembl.org/codec</link>
	<description>A Personal Polylogic Code/Decode &#039;Zettelkasten&#039;</description>
	<lastBuildDate>Thu, 02 Feb 2012 03:38:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>UIWebView &#8211; checking when user clicks a link</title>
		<link>http://www.trembl.org/codec/275/</link>
		<comments>http://www.trembl.org/codec/275/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 10:03:29 +0000</pubDate>
		<dc:creator>Georg Tremmel</dc:creator>
				<category><![CDATA[Raw]]></category>
		<category><![CDATA[delegate]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UIWebView]]></category>
		<category><![CDATA[UIWebViewNavigationType]]></category>

		<guid isPermaLink="false">http://www.trembl.org/codec/?p=275</guid>
		<description><![CDATA[- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { // intercepting web click in the webView NSLog(@"%@, %i", [request.URL absoluteString], navigationType); } Don&#8217;t forget to set &#60;UIWebViewDelegate&#62;]]></description>
			<content:encoded><![CDATA[<p><code>- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {</p>
<p>	// intercepting web click in the webView<br />
	NSLog(@"%@,  %i", [request.URL absoluteString], navigationType);<br />
}<br />
</code></p>
<p>Don&#8217;t forget to set &lt;UIWebViewDelegate&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trembl.org/codec/275/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UIWebView, Changing filenames with Javascript</title>
		<link>http://www.trembl.org/codec/195/</link>
		<comments>http://www.trembl.org/codec/195/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 07:12:23 +0000</pubDate>
		<dc:creator>Georg Tremmel</dc:creator>
				<category><![CDATA[Raw]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[UIWebView]]></category>

		<guid isPermaLink="false">http://www.trembl.org/codec/?p=195</guid>
		<description><![CDATA[Calling JS from webViewDidFinishLoading, modifying paths to local. Before that all the images had to be stored into the local path. http://iphoneincubator.com/blog/windows-views/uiwebview-dynamically-modify-html-documents Interesting direction, but still looking for an elegant way to mix external sites (HTML) with local content (images, scripts&#8230;)]]></description>
			<content:encoded><![CDATA[<p>Calling JS from webViewDidFinishLoading, modifying paths to local. Before that all the images had to be stored into the local path.</p>
<p><a href="http://iphoneincubator.com/blog/windows-views/uiwebview-dynamically-modify-html-documents">http://iphoneincubator.com/blog/windows-views/uiwebview-dynamically-modify-html-documents</a></p>
<p>Interesting direction, but still looking for an elegant way to mix external sites (HTML) with local content (images, scripts&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trembl.org/codec/195/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Safari/UIWebView Supported Meta Tags</title>
		<link>http://www.trembl.org/codec/192/</link>
		<comments>http://www.trembl.org/codec/192/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 11:08:54 +0000</pubDate>
		<dc:creator>Georg Tremmel</dc:creator>
				<category><![CDATA[Raw]]></category>
		<category><![CDATA[Behaviour]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[UIWebView]]></category>

		<guid isPermaLink="false">http://www.trembl.org/codec/?p=192</guid>
		<description><![CDATA[MetaTags.html ConfiguringWebApplications.html &#60;meta name=&#8221;apple-mobile-web-app-capable&#8221; content=&#8221;yes&#8221;&#62; &#60;meta name=&#8221;apple-mobile-web-app-status-bar-style&#8221; content=&#8221;none&#8221;&#62; &#60;meta name = &#8220;viewport&#8221; content = &#8220;width = device-width&#8221;&#62; &#60;meta name = &#8220;viewport&#8221; content = &#8220;initial-scale = 1.0, user-scalable = no&#8221;&#62; &#60;link rel=&#8221;apple-touch-icon&#8221; href=&#8221;/custom_icon.png&#8221;/&#62; &#60;link rel=&#8221;apple-touch-startup-image&#8221; href=&#8221;/startup.png&#8221;&#62;]]></description>
			<content:encoded><![CDATA[<p><a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html">MetaTags.html</a></p>
<p><a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html">ConfiguringWebApplications.html</a></p>
<p>&lt;meta name=&#8221;apple-mobile-web-app-capable&#8221; content=&#8221;yes&#8221;&gt;<br />
&lt;meta name=&#8221;apple-mobile-web-app-status-bar-style&#8221; content=&#8221;none&#8221;&gt;<br />
&lt;meta name = &#8220;viewport&#8221; content = &#8220;width = device-width&#8221;&gt;<br />
&lt;meta name = &#8220;viewport&#8221; content = &#8220;initial-scale = 1.0, user-scalable = no&#8221;&gt;<br />
&lt;link rel=&#8221;apple-touch-icon&#8221; href=&#8221;/custom_icon.png&#8221;/&gt;<br />
&lt;link rel=&#8221;apple-touch-startup-image&#8221; href=&#8221;/startup.png&#8221;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trembl.org/codec/192/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

