<?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>SkyBlog &#187; Objective-C</title>
	<atom:link href="http://www.skylarcantu.com/blog/tag/objective-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skylarcantu.com/blog</link>
	<description>...just some of my thoughts.</description>
	<lastBuildDate>Fri, 18 Dec 2009 09:35:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Changing colors of UINavigationBarButtons</title>
		<link>http://www.skylarcantu.com/blog/2009/11/05/changing-colors-of-uinavigationbarbuttons/</link>
		<comments>http://www.skylarcantu.com/blog/2009/11/05/changing-colors-of-uinavigationbarbuttons/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 21:22:15 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UINavigationBar]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=301</guid>
		<description><![CDATA[Alright, here&#8217;s another quick tip.  &#8220;How to change the colors of a button on a toolbar.&#8221;  Of course, this can be applied to any toolbar but I am going to demonstrate the procedure on a UINavigationBar.

The above image only shows a couple of colors.  In truth, you can make the button any [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/11/05/changing-colors-of-uinavigationbarbuttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving a view as an image.</title>
		<link>http://www.skylarcantu.com/blog/2009/10/16/saving-a-view-as-an-image/</link>
		<comments>http://www.skylarcantu.com/blog/2009/10/16/saving-a-view-as-an-image/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 15:32:43 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UIImage]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=299</guid>
		<description><![CDATA[Another real quick tip for you.  Depending on what you&#8217;re doing, why might want to capture a view and store it as an image.  The frameworks make this quick and painless.
The first step you should take is to create a new image context in which we will be working.  The next step [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/10/16/saving-a-view-as-an-image/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Embedding UITables into UIAlertViews</title>
		<link>http://www.skylarcantu.com/blog/2009/10/10/embedding-uitables-into-uialertviews/</link>
		<comments>http://www.skylarcantu.com/blog/2009/10/10/embedding-uitables-into-uialertviews/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 16:32:38 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[runtime.h]]></category>
		<category><![CDATA[UIAlertView]]></category>
		<category><![CDATA[UIGlassButton]]></category>
		<category><![CDATA[UITableView]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=276</guid>
		<description><![CDATA[The newer Apple firmware will create a table in your UIAlertView automatically if you create a more than the number of buttons that fit onto the alert.  Note that this number is different in landscape and portrait modes.  I found the implementation to be very unappealing for a few reasons.  First of [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/10/10/embedding-uitables-into-uialertviews/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t use UITableViewController. Really.</title>
		<link>http://www.skylarcantu.com/blog/2009/09/24/dont-use-uitableviewcontroller-really/</link>
		<comments>http://www.skylarcantu.com/blog/2009/09/24/dont-use-uitableviewcontroller-really/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 12:52:42 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UITableView]]></category>
		<category><![CDATA[UITableViewController]]></category>
		<category><![CDATA[UIViewController]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=258</guid>
		<description><![CDATA[I was hesitant to even begin writing this blogpost for two reasons.  First of all, I knew it would be short.  More importantly, though, it&#8217;s because I know some people swear by the opposite.  However, I must insist that you should never use a UITableViewController in your iPhone applications.  
Let&#8217;s go [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/09/24/dont-use-uitableviewcontroller-really/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Localizing your iPhone OS applications in Xcode.</title>
		<link>http://www.skylarcantu.com/blog/2009/08/19/localization-your-iphone-os-applications-in-xcode/</link>
		<comments>http://www.skylarcantu.com/blog/2009/08/19/localization-your-iphone-os-applications-in-xcode/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 13:27:03 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Localization]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Settings.bundle]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=208</guid>
		<description><![CDATA[Localization from within Xcode is a little unnatural at first.  And to tell you the truth, I still don&#8217;t like it is handled.  But that&#8217;s neither here nor there.  This post will show you how to add support for localization within your own application.
Localizing
The first thing you need to do is localize [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/08/19/localization-your-iphone-os-applications-in-xcode/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Custom UIAlertView (Color chooser)</title>
		<link>http://www.skylarcantu.com/blog/2009/08/14/custom-uialertview-color-chooser/</link>
		<comments>http://www.skylarcantu.com/blog/2009/08/14/custom-uialertview-color-chooser/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 05:14:26 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UIAlertView]]></category>
		<category><![CDATA[UISlider]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=193</guid>
		<description><![CDATA[In this post, I am going to show you how to make a custom UIAlertView, as seen in the above screenshots and this video.  The custom UIAlertView is a color picker that is taken right out of my PocketTouch application (available on the AppStore very soon!).
To do anything custom to an alert view, we [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/08/14/custom-uialertview-color-chooser/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
<enclosure url="http://www.skylarcantu.com/videos/PT4ColorChooser/PT4ColorChooser.mov" length="2249764" type="video/quicktime" />
		</item>
		<item>
		<title>Creating a PreferenceBundle for the iPhone.</title>
		<link>http://www.skylarcantu.com/blog/2009/08/12/creating-a-preferencebundle-for-the-iphone/</link>
		<comments>http://www.skylarcantu.com/blog/2009/08/12/creating-a-preferencebundle-for-the-iphone/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 06:53:03 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Prefernces]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=170</guid>
		<description><![CDATA[IPhone Settings Within Settings.app
This document assumes that the reader has intermediate to expert knowledge and skills in the creating of applications for a jailbroken iPhone or iPod Touch. If you have any questions regarding this material, feel free to comment below.

Settings Bundles vs. Preference Bundles
Settings Bundles
Settings bundles are what you would include if you were [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/08/12/creating-a-preferencebundle-for-the-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic rounded rect drawing w/Multitouch</title>
		<link>http://www.skylarcantu.com/blog/2009/08/12/dynamic-rounded-rect-drawing-wmultitouch/</link>
		<comments>http://www.skylarcantu.com/blog/2009/08/12/dynamic-rounded-rect-drawing-wmultitouch/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 08:06:59 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[multitouch]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=153</guid>
		<description><![CDATA[
Some of you might want to do Multi Touch within your application, but are a little confused by Apple&#8217;s tutorial at http://developer.apple.com/iphone.  Well, I tried to simplify things a little bit.&#8211;I made a code sample that simply draws a rounded rect whose size is what you make with your fingers.  Remember, you will [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/08/12/dynamic-rounded-rect-drawing-wmultitouch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting to know Xcode/Interface Buider: PART III</title>
		<link>http://www.skylarcantu.com/blog/2009/08/11/getting-to-know-xcodeinterface-buider-part-iii/</link>
		<comments>http://www.skylarcantu.com/blog/2009/08/11/getting-to-know-xcodeinterface-buider-part-iii/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 07:43:48 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=130</guid>
		<description><![CDATA[This tutorial is an extension of http://www.skylarcantu.com/blog/2009/08/10/getting-to-know-xcodeinterface-buider-parts-i-ii-uitabbar-projects/.  To get the most out of this tutorial, please either follow the linked tutorial, or download the sample project from the first post of the linked tutorial.
So, we have this beautiful tabbed project, built up in Interface Builder, and all is looking pretty good.  But now, [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/08/11/getting-to-know-xcodeinterface-buider-part-iii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Drawing</title>
		<link>http://www.skylarcantu.com/blog/2009/08/08/84/</link>
		<comments>http://www.skylarcantu.com/blog/2009/08/08/84/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 04:42:52 +0000</pubDate>
		<dc:creator>Skylar</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone-dev]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://www.skylarcantu.com/blog/?p=84</guid>
		<description><![CDATA[
Want to create a drawing app?  Here you go.  Clearly, you will need to make improvements to the drawing code, as I literally spent five minutes making this to test something for another app.  Regardless, you should be able to get the gist of what&#8217;s going on.  What I am linking [...]]]></description>
		<wfw:commentRss>http://www.skylarcantu.com/blog/2009/08/08/84/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
