<?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> &#187; FAQBasic</title>
	<atom:link href="http://blog.bar-coders.com/category/iphonedevfaq/faqbasic/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bar-coders.com</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 17:23:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to set the icon for the iPhone application?</title>
		<link>http://blog.bar-coders.com/2010/03/27/how-to-set-the-icon-for-the-iphone-application/</link>
		<comments>http://blog.bar-coders.com/2010/03/27/how-to-set-the-icon-for-the-iphone-application/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 23:03:57 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[FAQBasic]]></category>
		<category><![CDATA[iPhoneDevFAQ]]></category>

		<guid isPermaLink="false">http://blog.bar-coders.com/?p=165</guid>
		<description><![CDATA[Q: How to set the application icon that will be shown on the iPhone?
Ans: To set icon first one needs to create 57&#215;57 image  (type: png).  You have a choice of apps that can do this your you so feel free to use any of them that you like (Photoshop, GIMP, Paint, etc).  Once image [...]]]></description>
			<content:encoded><![CDATA[<p><em>Q</em>: How to set the application icon that will be shown on the iPhone?</p>
<p><em>Ans</em>: To set icon first one needs to create 57&#215;57 image  (type: png).  You have a choice of apps that can do this your you so feel free to use any of them that you like (Photoshop, GIMP, Paint, etc).  Once image has been created please add it into your Resources folder of your project. Next, one needs to edit Info.plist in your project (under Resources section of your project in Xcode).  Find the Info.plist file and open it.  It should display you a table with keys/values in the columns.  Please change the Value for Key &#8220;Icon file&#8221; to be the same name as the name of your image file.  And that is it.  If you compile your application it should now show the icon on your iPhone (or your simulator).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bar-coders.com/2010/03/27/how-to-set-the-icon-for-the-iphone-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode &#8211; Keyboard shortcuts 101</title>
		<link>http://blog.bar-coders.com/2009/11/05/xcode-keyboard-shortcuts-101/</link>
		<comments>http://blog.bar-coders.com/2009/11/05/xcode-keyboard-shortcuts-101/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 11:42:27 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[FAQBasic]]></category>
		<category><![CDATA[iPhoneDevFAQ]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://blog.bar-coders.com/?p=173</guid>
		<description><![CDATA[

I have had pleasure to work in different programming IDE’s over the years (IDE = Integrated Development Environment). Well to be honest I was lucky to have been able to work in some of the best ones, namely: Visual Studio (6.0 through 2008), Eclipse (and variations such as PyDev, CDT, vXWorks, Carbide.C++, Dev-C++), and of [...]]]></description>
			<content:encoded><![CDATA[<p><!-- table.sample { border-width: thin; border-spacing: ; border-style: outset; border-color: red; border-collapse: collapse; background-color: white; } table.sample th { border-width: thin; padding: 2px; border-style: inset; border-color: gray; background-color: rgb(255, 255, 240); -moz-border-radius: ; } table.sample td { border-width: thin; padding: 2px; border-style: inset; border-color: gray; background-color: rgb(255, 255, 240); -moz-border-radius: ; } --></p>
<div>
<p>I have had pleasure to work in different programming IDE’s over the years (IDE = Integrated Development Environment). Well to be honest I was lucky to have been able to work in some of the best ones, namely: Visual Studio (6.0 through 2008), Eclipse (and variations such as PyDev, CDT, vXWorks, Carbide.C++, Dev-C++), and of course Xcode.  What I have preached to my junior colleagues, friends, students was to master IDE if they want to be truly productive (regardless of the programming language they use, OS they want to program to, etc). Knowing tips and tricks of IDE will help you solve the problems faster, write better code, and get everything done in time for your favorite football game, series, etc.  So what is a first thing that I recommend to learn about IDE? Can you guess?</p>
<p>Well, first thing that I usually recommend is to learn the keyboard shortcuts. Knowing keyboard shortcuts will increase the speed of typing and automatically increase your productivity. You will still have to use mouse on certain occasions but code development will be done much faster (if code completion is enabled in your IDE increase in speed is even more evident).</p>
<p>My favorite keyboard shortcuts in Xcode are (assuming “Xcode Default” keyboard shortcuts) and the ones I used the most:</p>
<p>Apple + B = Build project</p>
<p>Apple + Return  = Build and Go</p>
<p>Apple + X/C/V = Cut/Copy/Paste</p>
<p>Apple + / = Comment/Uncomment selected text</p>
<p>Option + esc = Completion list</p>
<p>Apple + S = Save</p>
<p>Apple + Z/Y = Undo/Redo</p>
<p>….</p>
<p>This was just a short list of shortcuts I use…. What I would like to hear from other people is what shortcuts they use the most….. So feel free add to this list…</p>
<p>You can always customize keyboard shortcuts Xcode preferences-&gt;Key Bindings dialog box. I will not go into detail on this but if you are interested a fairly detailed explanation how to modify keyboard shortcuts is available in the official Apple document called “Xcode Workspace” (available at <a href="http://developer.apple.com/documentation/developertools/Conceptual/XcodeWorkspace/000-Introduction/Introduction.html">following address</a>). So if you are interested in setting your own shortcuts go check this document out.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bar-coders.com/2009/11/05/xcode-keyboard-shortcuts-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
