<?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>dBlog.com.au &#187; iphone SDK tips</title>
	<atom:link href="http://dblog.com.au/category/iphone-sdk-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://dblog.com.au</link>
	<description>My Development Blog</description>
	<lastBuildDate>Tue, 27 Oct 2009 23:43:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPhone SDK Tip: Firing custom events when a link is clicked in a UIWebView</title>
		<link>http://dblog.com.au/iphone-development/iphone-sdk-tip-firing-custom-events-when-a-link-is-clicked-in-a-uiwebview/</link>
		<comments>http://dblog.com.au/iphone-development/iphone-sdk-tip-firing-custom-events-when-a-link-is-clicked-in-a-uiwebview/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 00:42:17 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iphone SDK tips]]></category>
		<category><![CDATA[xcode]]></category>
		<category><![CDATA[iphone sdk]]></category>
		<category><![CDATA[NSLog]]></category>
		<category><![CDATA[NSURL]]></category>
		<category><![CDATA[NSURLRequest]]></category>
		<category><![CDATA[UIWebview]]></category>
		<category><![CDATA[UIWebViewNavigationType]]></category>

		<guid isPermaLink="false">http://dblog.com.au/?p=115</guid>
		<description><![CDATA[Well I have been asked this a few times and I can see how it would be a very helpful addition to the UIWebView&#8217;s feature set. What I am talking about is adding the ability to intercept the event generated when a user selects a link in a webpage being displayed with a UIWebView, this [...]]]></description>
		<wfw:commentRss>http://dblog.com.au/iphone-development/iphone-sdk-tip-firing-custom-events-when-a-link-is-clicked-in-a-uiwebview/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>iPhone SDK Tip: Function for getting formatted date string as NSString</title>
		<link>http://dblog.com.au/iphone-development/iphone-sdk-tip-function-for-getting-formatted-date-string-as-nsstring/</link>
		<comments>http://dblog.com.au/iphone-development/iphone-sdk-tip-function-for-getting-formatted-date-string-as-nsstring/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 01:58:29 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iphone SDK tips]]></category>
		<category><![CDATA[xcode]]></category>
		<category><![CDATA[iphone sdk]]></category>
		<category><![CDATA[iphone sdk tip]]></category>
		<category><![CDATA[timeformat]]></category>

		<guid isPermaLink="false">http://dblog.com.au/?p=107</guid>
		<description><![CDATA[Well I needed a way to get a formatted date string in NSString format so I dug around and came up with the following function.

-(NSString *) dateInFormat:(NSString*) stringFormat {
	char buffer[80];
	const char *format = [stringFormat UTF8String];
	time_t rawtime;
	struct tm * timeinfo;
	time(&#038;rawtime);
	timeinfo = localtime(&#038;rawtime);
	strftime(buffer, 80, format, timeinfo);
	return [NSString  stringWithCString:buffer encoding:NSUTF8StringEncoding];
}

What it does it it takes a NSString [...]]]></description>
		<wfw:commentRss>http://dblog.com.au/iphone-development/iphone-sdk-tip-function-for-getting-formatted-date-string-as-nsstring/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

