<?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>macsoup.net</title>
	<atom:link href="http://macsoup.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://macsoup.net</link>
	<description>Just another Bitpath.org site</description>
	<lastBuildDate>Sun, 20 May 2012 01:40:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Xcode</title>
		<link>http://macsoup.net/2012/04/xcode/</link>
		<comments>http://macsoup.net/2012/04/xcode/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 00:18:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cocoa and the IOS SDK]]></category>

		<guid isPermaLink="false">https://macsoup.net/?p=206</guid>
		<description><![CDATA[The Xcode environment can be divided into three main sections: Navigation Area (Left side) Editor Area (Middle) Utility Area (Right side) &#160;]]></description>
			<content:encoded><![CDATA[<p>The Xcode environment can be divided into three main sections:</p>
<ol>
<li>Navigation Area (Left side)</li>
<li>Editor Area (Middle)</li>
<li>Utility Area (Right side)</li>
</ol>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://macsoup.net/2012/04/xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decision Making</title>
		<link>http://macsoup.net/2012/04/conditional-processing/</link>
		<comments>http://macsoup.net/2012/04/conditional-processing/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 21:32:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Objective-C 2.0]]></category>

		<guid isPermaLink="false">https://macsoup.net/?p=199</guid>
		<description><![CDATA[if-else statements switch statements conditional operator Compound conditional testing (&#38;&#38; and &#124;&#124;) &#160;]]></description>
			<content:encoded><![CDATA[<ol>
<li>if-else statements</li>
<li>switch statements</li>
<li>conditional operator</li>
</ol>
<p>Compound conditional testing (&amp;&amp; and ||)</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://macsoup.net/2012/04/conditional-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looping</title>
		<link>http://macsoup.net/2012/04/looping/</link>
		<comments>http://macsoup.net/2012/04/looping/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 21:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Objective-C 2.0]]></category>

		<guid isPermaLink="false">https://macsoup.net/?p=195</guid>
		<description><![CDATA[Types of looping are: for statements for (initial_expression; loop_condition; loop_expression) {statement/statements} while statements initial_condition while (condition) {statement/statements} do statements do {statement/statements} while (condition) &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Types of looping are:</p>
<ol>
<li>for statements</li>
<ul>
<li>for (initial_expression; loop_condition; loop_expression)<br />
{statement/statements}</li>
</ul>
<li>while statements</li>
<ul>
<li>initial_condition<br />
while (condition)<br />
{statement/statements}</li>
</ul>
<li>do statements</li>
<ul>
<li>do<br />
{statement/statements}<br />
while (condition)</li>
</ul>
</ol>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://macsoup.net/2012/04/looping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data types and expressions</title>
		<link>http://macsoup.net/2012/04/data-types-and-expressions/</link>
		<comments>http://macsoup.net/2012/04/data-types-and-expressions/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 19:06:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Objective-C 2.0]]></category>

		<guid isPermaLink="false">https://macsoup.net/?p=189</guid>
		<description><![CDATA[The basic data types and format options are: int octal: 050, #x0 hexadecimal: 0xFFFFFF, %#x qualifiers &#8211; long, long long, sort, unsigned, signed float scientific notation: 1.9e-10, %f %e %g double same as float, more decimal space char]]></description>
			<content:encoded><![CDATA[<p>The basic data types and format options are:</p>
<ol>
<li>int</li>
<ul>
<li>octal: 050, #x0</li>
<li>hexadecimal: 0xFFFFFF, %#x</li>
<li>qualifiers &#8211; long, long long, sort, unsigned, signed</li>
</ul>
<li>float</li>
<ul>
<li>scientific notation: 1.9e-10, %f %e %g</li>
</ul>
<li>double</li>
<ul>
<li style="text-align: left;">same as float, more decimal space</li>
</ul>
<li>char</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://macsoup.net/2012/04/data-types-and-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objects</title>
		<link>http://macsoup.net/2012/04/objects/</link>
		<comments>http://macsoup.net/2012/04/objects/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 18:20:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Objective-C 2.0]]></category>

		<guid isPermaLink="false">https://macsoup.net/?p=182</guid>
		<description><![CDATA[In Objective C, object usage is generally broken down into 3 parts: Class interface section method, arguement and data type declarations Class implementation section method definitions Program object initialization and management actual usage and runtime behavior &#160;]]></description>
			<content:encoded><![CDATA[<p>In Objective C, object usage is generally broken down into 3 parts:</p>
<ol>
<li>Class interface section</li>
<ul>
<li>method, arguement and data type declarations</li>
</ul>
<li>Class implementation section</li>
<ul>
<li>method definitions</li>
</ul>
<li>Program object initialization and management</li>
<ul>
<li>actual usage and runtime behavior</li>
</ul>
</ol>
<div></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://macsoup.net/2012/04/objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

