<?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 for Do, or do not - Rafael Steil</title>
	<atom:link href="http://rafaelsteil.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://rafaelsteil.com</link>
	<description></description>
	<lastBuildDate>Fri, 13 Apr 2012 17:15:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Crappy iOS APIs &#8211; UINavigationController by TotoMAvha</title>
		<link>http://rafaelsteil.com/2011/07/23/crappy-ios-apis-uinavigationcontroller/#comment-14</link>
		<dc:creator>TotoMAvha</dc:creator>
		<pubDate>Fri, 13 Apr 2012 17:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=25#comment-14</guid>
		<description>Thank you Rafael!!

Regards.</description>
		<content:encoded><![CDATA[<p>Thank you Rafael!!</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The status of Swing in 2011 by Andre Brito Fonseca</title>
		<link>http://rafaelsteil.com/2011/12/05/the-status-of-swing-in-2011/#comment-13</link>
		<dc:creator>Andre Brito Fonseca</dc:creator>
		<pubDate>Tue, 20 Dec 2011 19:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=103#comment-13</guid>
		<description>I agree. If someone learns how to build desktop applications using Swing, probably that someone be traumatized and think that destkop development is chaotic as Swing is.</description>
		<content:encoded><![CDATA[<p>I agree. If someone learns how to build desktop applications using Swing, probably that someone be traumatized and think that destkop development is chaotic as Swing is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The status of Swing in 2011 by Roger Leite</title>
		<link>http://rafaelsteil.com/2011/12/05/the-status-of-swing-in-2011/#comment-12</link>
		<dc:creator>Roger Leite</dc:creator>
		<pubDate>Mon, 05 Dec 2011 15:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=103#comment-12</guid>
		<description>Hi Steil! Great post.
Before going with Swing, i&#039;d try two options:
- Mono (http://www.mono-project.com/) with GTK
or
- Glade (http://glade.gnome.org/) to design interface and some language with GTK binding, like Java, Python or Ruby.

In the past i worked with a python application and Glade in interface. It was great.</description>
		<content:encoded><![CDATA[<p>Hi Steil! Great post.<br />
Before going with Swing, i&#8217;d try two options:<br />
- Mono (<a href="http://www.mono-project.com/" rel="nofollow">http://www.mono-project.com/</a>) with GTK<br />
or<br />
- Glade (<a href="http://glade.gnome.org/" rel="nofollow">http://glade.gnome.org/</a>) to design interface and some language with GTK binding, like Java, Python or Ruby.</p>
<p>In the past i worked with a python application and Glade in interface. It was great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up Git colors in the terminal by Bruno</title>
		<link>http://rafaelsteil.com/2011/11/17/setting-up-git-colors-in-the-terminal/#comment-10</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Mon, 21 Nov 2011 17:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=97#comment-10</guid>
		<description>Nice post! It really helps!
Thank&#039;s</description>
		<content:encoded><![CDATA[<p>Nice post! It really helps!<br />
Thank&#8217;s</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crappy iOS APIs &#8211; UINavigationController by Rafael Steil</title>
		<link>http://rafaelsteil.com/2011/07/23/crappy-ios-apis-uinavigationcontroller/#comment-9</link>
		<dc:creator>Rafael Steil</dc:creator>
		<pubDate>Thu, 10 Nov 2011 15:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=25#comment-9</guid>
		<description>@maxime, yes, that way it works, but as you said, it&#039;s not natural and fits on my complains about the API. Also, setting it in the previous controller sometimes mixes too much logic from two different classes (like, for example, when the logic for the back requires some more work).</description>
		<content:encoded><![CDATA[<p>@maxime, yes, that way it works, but as you said, it&#8217;s not natural and fits on my complains about the API. Also, setting it in the previous controller sometimes mixes too much logic from two different classes (like, for example, when the logic for the back requires some more work).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crappy iOS APIs &#8211; UINavigationController by Maxime Guilbot</title>
		<link>http://rafaelsteil.com/2011/07/23/crappy-ios-apis-uinavigationcontroller/#comment-8</link>
		<dc:creator>Maxime Guilbot</dc:creator>
		<pubDate>Thu, 10 Nov 2011 05:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=25#comment-8</guid>
		<description>Hey,

You can actually use self.navigationItem.backBarButtonItem to override the back button but you have to do it in the viewDidLoad method of the previous controller, not the controller that is getting pushed.

Not the most natural thing but really works.</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>You can actually use self.navigationItem.backBarButtonItem to override the back button but you have to do it in the viewDidLoad method of the previous controller, not the controller that is getting pushed.</p>
<p>Not the most natural thing but really works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Omit unexpected XML Elements with XStream by Rafael Steil</title>
		<link>http://rafaelsteil.com/2011/10/31/omit-unexpected-xml-elements-with-xstream/#comment-7</link>
		<dc:creator>Rafael Steil</dc:creator>
		<pubDate>Wed, 09 Nov 2011 12:37:33 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=86#comment-7</guid>
		<description>Ouch, you&#039;re right. For some reason I was only considering that method for serialization purposes. Thanks for the tip Chris, I updated the topic to include this information.</description>
		<content:encoded><![CDATA[<p>Ouch, you&#8217;re right. For some reason I was only considering that method for serialization purposes. Thanks for the tip Chris, I updated the topic to include this information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Omit unexpected XML Elements with XStream by Chris Khoo</title>
		<link>http://rafaelsteil.com/2011/10/31/omit-unexpected-xml-elements-with-xstream/#comment-6</link>
		<dc:creator>Chris Khoo</dc:creator>
		<pubDate>Tue, 08 Nov 2011 21:09:25 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=86#comment-6</guid>
		<description>XStream allows fields to be omitted from serialization/deserialization by using XStream::omitField() function.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>XStream allows fields to be omitted from serialization/deserialization by using XStream::omitField() function.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crappy iOS APIs &#8211; UINavigationController by Rafael Steil</title>
		<link>http://rafaelsteil.com/2011/07/23/crappy-ios-apis-uinavigationcontroller/#comment-5</link>
		<dc:creator>Rafael Steil</dc:creator>
		<pubDate>Mon, 22 Aug 2011 13:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=25#comment-5</guid>
		<description>Hey Johnny, 

I have had some problems with this kind of animation as well. In my case, I was trying to execute a code after the call to animated:YES, but (I don&#039;t know why) the OS just ignored any further code. 
My deduction is that the animation block it uses internally interferes somehow in the rest of the code that might run while the animation is in place.. I don&#039;t remember exactly what my situation was, but you may want to look for some initialization code in viewWillAppear or in the code just after animated:YES. 

If you want (and can), add the piece of code here.</description>
		<content:encoded><![CDATA[<p>Hey Johnny, </p>
<p>I have had some problems with this kind of animation as well. In my case, I was trying to execute a code after the call to animated:YES, but (I don&#8217;t know why) the OS just ignored any further code.<br />
My deduction is that the animation block it uses internally interferes somehow in the rest of the code that might run while the animation is in place.. I don&#8217;t remember exactly what my situation was, but you may want to look for some initialization code in viewWillAppear or in the code just after animated:YES. </p>
<p>If you want (and can), add the piece of code here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crappy iOS APIs &#8211; UINavigationController by Johnny</title>
		<link>http://rafaelsteil.com/2011/07/23/crappy-ios-apis-uinavigationcontroller/#comment-4</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Mon, 22 Aug 2011 12:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelsteil.com/?p=25#comment-4</guid>
		<description>I can not agree more!!!

I&#039;ve gone crazy trying to figure this all out and it really is close to insanity... you would think that the simple things would be simple to implement and with all the glory of Xcode and IB... but NNNNOOOOOOOOOO... something (that is usually not documented) has to come out and bite you in the ass every once in a while.

My latest issue with Xcode is that my app crashes when pushing a view controller with &quot;animated&quot; set to &quot;YES&quot;, but it works fine when &quot;animated&quot; is set to &quot;NO&quot;.

*literally going to bang my head against a wall*</description>
		<content:encoded><![CDATA[<p>I can not agree more!!!</p>
<p>I&#8217;ve gone crazy trying to figure this all out and it really is close to insanity&#8230; you would think that the simple things would be simple to implement and with all the glory of Xcode and IB&#8230; but NNNNOOOOOOOOOO&#8230; something (that is usually not documented) has to come out and bite you in the ass every once in a while.</p>
<p>My latest issue with Xcode is that my app crashes when pushing a view controller with &#8220;animated&#8221; set to &#8220;YES&#8221;, but it works fine when &#8220;animated&#8221; is set to &#8220;NO&#8221;.</p>
<p>*literally going to bang my head against a wall*</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.501 seconds -->
<!-- Cached page served by WP-Cache -->

