<?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>Two Shots Of Cocoa</title>
	<atom:link href="http://twoshotsofcocoa.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://twoshotsofcocoa.com</link>
	<description>When coffee is not enough</description>
	<lastBuildDate>Sun, 31 Mar 2013 16:39:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>UIView color pattern image from Interface Builder</title>
		<link>http://twoshotsofcocoa.com/?p=80</link>
		<comments>http://twoshotsofcocoa.com/?p=80#comments</comments>
		<pubDate>Sun, 31 Mar 2013 16:39:01 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Dev tools]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=80</guid>
		<description><![CDATA[Here's another quick trick to avoid having to create IBOutlets to set properties. As I mentioned in a previous post, you can define any attribute for an object right from IB. But pattern image is not an attribute of UIView. Well I made it a category and called it a day! And this can be [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simpler nib loading for UIViewController</title>
		<link>http://twoshotsofcocoa.com/?p=76</link>
		<comments>http://twoshotsofcocoa.com/?p=76#comments</comments>
		<pubDate>Tue, 21 Aug 2012 00:56:20 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[initWithNib]]></category>
		<category><![CDATA[UIViewController]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=76</guid>
		<description><![CDATA[I was so tired of always doing 1MyCustomViewController *custom = [[MyCustomViewController alloc] initWithNibName:@&#34;MyCustomViewController&#34; bundle:nil]; that I made a category to minimize it to: 1MyCustomViewController *custom = [MyCustomViewController initWithNib]; Enjoy! &#160; 12345+ (id)initWithNib { return [[self alloc] initWithNibName:NSStringFromClass(self) bundle:nil]; }]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=76</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interface Builder&#8217;s User Defined Runtime Attributes</title>
		<link>http://twoshotsofcocoa.com/?p=70</link>
		<comments>http://twoshotsofcocoa.com/?p=70#comments</comments>
		<pubDate>Sat, 18 Aug 2012 19:26:30 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=70</guid>
		<description><![CDATA[If you are like me you use Interface Builder to do super fast prototyping and development for views with a static layout/design or even for views with a dynamic one. If you are like me you also subclass the hell out of UIKit classes to make you own awesome things. The problem though, is that [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=70</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MFMailComposeViewController crash on dismissal on iOS5 and ARC</title>
		<link>http://twoshotsofcocoa.com/?p=60</link>
		<comments>http://twoshotsofcocoa.com/?p=60#comments</comments>
		<pubDate>Tue, 03 Jul 2012 23:44:55 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=60</guid>
		<description><![CDATA[If you are like me you are already taking advantage of some of the new iOS5 methods (and ARC) like to present or dismiss a view controller. So I used those methods to present an MFMailComposeViewController and everything was fine: 123MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; [picker setMailComposeDelegate:self]; [self presentViewController:picker animated:YES completion:NULL]; The problem appeared [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=60</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>User Info for attributes in Core Data Model</title>
		<link>http://twoshotsofcocoa.com/?p=51</link>
		<comments>http://twoshotsofcocoa.com/?p=51#comments</comments>
		<pubDate>Mon, 17 Oct 2011 09:35:50 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Dev tools]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Attribute]]></category>
		<category><![CDATA[Core Data]]></category>
		<category><![CDATA[User Info]]></category>
		<category><![CDATA[Xcode 4.2]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=51</guid>
		<description><![CDATA[For anyone growing gray hair because the User Info entries that you are setting for attributes in your model simply disappear after you close Xcode 4.2 or make a commit (you are using source control, right?), here is how to fix it in under 5 seconds: 1) Select the file for the model version you [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=51</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integer16 in Core Data Model in iOS5</title>
		<link>http://twoshotsofcocoa.com/?p=49</link>
		<comments>http://twoshotsofcocoa.com/?p=49#comments</comments>
		<pubDate>Mon, 17 Oct 2011 09:24:08 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Core Data Model iOS5 Integer16]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=49</guid>
		<description><![CDATA[The free ride is over! Up until iOS 4.3.5 an Integer16 attribute was really misused by the Core Data Model and it was being treated as an Integer32 (I think!). Starting in iOS5, an Integer16 attribute has its proper limit, 65535. So if you are working with numbers larger than that, you need to use [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=49</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your own crash reporter using QuincyKit</title>
		<link>http://twoshotsofcocoa.com/?p=43</link>
		<comments>http://twoshotsofcocoa.com/?p=43#comments</comments>
		<pubDate>Tue, 09 Aug 2011 08:04:59 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[Dev tools]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[Crash reports]]></category>
		<category><![CDATA[QuincyKit]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=43</guid>
		<description><![CDATA[While there are a couple of great services (HockeyApp, TestFlight) offering crash reporters for your app, these tend to be a little expensive...$20/month But even if you are an indie developer, chances are that you have a website for your app and that your hosting plan came with a couple of SQL databases that you [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=43</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode4 and GitHub for existing projects</title>
		<link>http://twoshotsofcocoa.com/?p=38</link>
		<comments>http://twoshotsofcocoa.com/?p=38#comments</comments>
		<pubDate>Mon, 20 Jun 2011 22:08:12 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=38</guid>
		<description><![CDATA[&#160; If you are unlucky, like I was, you started iOS development and didn't even know about source control. I am sure that, like me, you manually copied the entire Xcode project's directory for every version of your app to be released. Then, you decided to be more cautious and did the same even for [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode4 and GitHub for new projects, I finally got it</title>
		<link>http://twoshotsofcocoa.com/?p=35</link>
		<comments>http://twoshotsofcocoa.com/?p=35#comments</comments>
		<pubDate>Mon, 20 Jun 2011 18:10:11 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=35</guid>
		<description><![CDATA[After suffering ages to figure out the best way to integrate Xcode 4 and GitHub and make it as easy as possible, last weekend at the Code For Change hacktahon, I finally got it! Here are the simple steps: Create a repository on GitHub Create a new project on Xcode4 and don't forget to check [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=35</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Embed images into email</title>
		<link>http://twoshotsofcocoa.com/?p=20</link>
		<comments>http://twoshotsofcocoa.com/?p=20#comments</comments>
		<pubDate>Tue, 24 May 2011 05:53:25 +0000</pubDate>
		<dc:creator>Emerson Malca</dc:creator>
				<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://twoshotsofcocoa.com/?p=20</guid>
		<description><![CDATA[One of the biggest problems of the MFMailComposerViewController, provided by Apple to allow us to send emails easily, is that it hasn't been updated since it first came out leaving us with very few (yet useful) methods to create and send an email. Since it hasn't been updated, the only way to add an attachment [...]]]></description>
		<wfw:commentRss>http://twoshotsofcocoa.com/?feed=rss2&#038;p=20</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
