<?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>#iPhoneDev &#187; Code</title>
	<atom:link href="http://iphone.keyvisuals.com/tag/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://iphone.keyvisuals.com</link>
	<description>Because Corporate Jobs Suck.</description>
	<lastBuildDate>Fri, 13 Jan 2012 07:26:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Implementing DTBannerManager by @Cocoanetics into a PhoneGap Project</title>
		<link>http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/</link>
		<comments>http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 01:14:50 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Cocoanetics]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[Parts]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=881</guid>
		<description><![CDATA[After spending way too much time trying to implement my own solution that would rotate ads from different networks in my free applications I decided to go with pre-made solution called DTBannerManager. It was created by Oliver Drobnik (@Cocoanetics) and is available for purchase in his Parts Store. Now what this does is exactly what [...]]]></description>
			<content:encoded><![CDATA[<p>After spending way too much time trying to implement my own solution that would rotate ads from different networks in my free applications I decided to go with pre-made solution called <strong>DTBannerManager</strong>. It was created by Oliver Drobnik (<span style="color: #3366ff;"><a href="http://twitter.com/#%21/cocoanetics" target="_blank"><span style="color: #3366ff;"><strong>@Cocoanetics</strong></span></a></span>) and is available for purchase in his <a title="Cocoanetics Parts Store" href="http://www.cocoanetics.com/parts-store/" target="_blank"><span style="color: #3366ff;"><strong>Parts Store</strong></span></a>. Now what this does is <em>exactly</em> what I wanted and more <img src='http://iphone.keyvisuals.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' />  It will check for iAds, then AdMob <em>and</em> Mobfox if you want. It also does it with style as the new ads slide in smoothly. It works on both 3.x &amp; 4.x versions of iOS and is even compatible with tab bar controllers. Just to put the cherry on top you can also offer your users the option to remove the ads completely through IAP.</p>
<p>Implementation in a native iOS app couldn&#8217;t be simpler . . .</p>
<pre class="brush: c; gutter: false">	[[DTBannerManager sharedManager] addAdsToViewController:tabBarController];</pre>
<p>I have an app that is built using the <a title="PhoneGap" href="http://www.phonegap.com/" target="_blank">PhoneGap</a> Platform. It&#8217;s not a complicated app.  It&#8217;s all .html, .css and javascript so PhoneGap was the obvious choice to use. I wanted to implement DTBannerManager into this project so I popped into the AppDelegate.h and poked around for a while. I dropped my code to instantiate the DTBannerManager into the application didFinishLaunchingWithOptions: method and to my disappointment the ads were being received but were <strong>not</strong> being displayed.</p>
<p>After further review and a little help from a friend we discovered the issue. The PhoneGap AppDelegate seems to create the webview then the view controller, then pushes the webview into the view controller which in turn calls <strong>webViewDidFinishLoad</strong>. <em>This seems to be the key</em>. We cannot access the <strong>viewController</strong> object until webViewDidFinishLoad has been called. Hence we instantiate DTBannerManager like so . . .</p>
<pre class="brush: c; gutter: false">/**
 Called when the webview finishes loading.  This stops the activity view and closes the imageview
 */
- (void)webViewDidFinishLoad:(UIWebView *)theWebView
{

    [DTBannerManager sharedManager].delegate = (id)self;
    [[DTBannerManager sharedManager] addAdsToViewController:self.viewController];

	// only valid if YourAppsName.plist specifies a protocol to handle
	if(self.invokeString)
	{
		// this is passed before the deviceready event is fired, so you can access it in js when you receive deviceready
		NSString* jsString = [NSString stringWithFormat:@"var invokeString = \"%@\";", self.invokeString];
		[theWebView stringByEvaluatingJavaScriptFromString:jsString];
	}
	return [ super webViewDidFinishLoad:theWebView ];
}</pre>
<p>Now you think I&#8217;d be super stoked at this point right? Wrong. I discovered that upon clicking a Mobfox Ad the app would immediately crash. Turns out I left out the <strong>Other Linker Flags </strong><em>-ObjC</em> &amp; <em>-all_load</em> which are required for the Mobfox.framework. No problem, just add them right? Wrong. As soon as I did my builds were failing with a Duplicate symbol error on the file NSData+Base64.h. Apparently both the  phonegap.framework &amp; the Mobfox.framework both depend on NSData+Base64.</p>
<p>Turns out that only the Mobfox.framework actually <em>depends</em> on it. My simple phonegap app had <em>no</em> use for it. I posted to the <a href="http://groups.google.com/group/phonegap" target="_blank">PhoneGap Google Group</a>  and was re-leaved to find a simple solution. PhoneGap provides you everything necessary to compile your own custom version of the phonegap.framework. You can find the specifics in the <a href="https://github.com/phonegap/phonegap-iphone/blob/master/README.md" target="_blank">FAQ #10</a>. I just compiled a new copy of the framework minus the header file and any refrences to NSData+Base64.h. I deleted the pre-existing phonegap.framework from my project and imported my new custom framework and immediately the Duplicate symbol errors were gone and DTBannerManager was operating correctly &#8211; Mobfox ads and all.</p>
<p>This article is based off of PhoneGap for iOS version 1.0.0. You can download my <span style="color: #3366ff;"><a href="http://iphone.keyvisuals.com/downloads/PhoneGap.framework_custom_for_DTBannerManager.zip" target="_blank"><span style="color: #3366ff;"><strong>custom phonegap.framework</strong></span></a></span> if you would also like to use DTBannerManager or Mobfox Ads in your phonegap project. I highly recommend DTBannerManager &#8211; it couldn&#8217;t be easier and besides it will increase your ad revenue! Get it and other great components from the <span style="color: #3366ff;"><a href="http://www.cocoanetics.com/parts-store/" target="_blank"><span style="color: #3366ff;"><strong>Cocoanetics Parts-Store</strong></span></a></span>.</p>
<p><a href="http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/"><em>Click here to view the embedded video.</em></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Implementing+DTBannerManager+by+%40Cocoanetics+into+a+PhoneGap+Project&amp;link=http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/&amp;notes=After%20spending%20way%20too%20much%20time%20trying%20to%20implement%20my%20own%20solution%20that%20would%20rotate%20ads%20from%20different%20networks%20in%20my%20free%20applications%20I%20decided%20to%20go%20with%20pre-made%20solution%20called%20DTBannerManager.%20It%20was%20created%20by%20Oliver%20Drobnik%20%28%40Cocoanetics%29%20and%20is%20available%20for%20purchase%20in%20his%20Parts%20Store.%20&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/iphonedev/implementing-dtbannermanager-by-cocoanetics-into-a-phonegap-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOOM Classic for iPhone Source Code Available</title>
		<link>http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/</link>
		<comments>http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 21:04:13 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[doom]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[idsoftware]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=611</guid>
		<description><![CDATA[Those cool guys at iD Software have released the source code to the hugely popular DOOM Classic game for iPhone &#38; iPodTouch. It has been released under the GPL License and can be downloaded from HERE. You&#8217;ll probably also want to read the Build Instructions. For more information check out Development on Doom Classic By [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-613" title="doom_logo" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/11/doom_logo.jpg" alt="doom_logo" width="270" height="165" />Those cool guys at iD Software have released the source code to the hugely popular <a href="http://www.idsoftware.com/doom-classic/iphone.htm" target="_blank">DOOM Classic</a> game for iPhone &amp; iPodTouch. It has been released under the GPL License and can be downloaded from <a href="ftp://www.idsoftware.com/idstuff/doom/doomclassic_iphone_v1.0_source.zip" target="_blank">HERE</a>. You&#8217;ll probably also want to read the <a href="ftp://www.idsoftware.com/idstuff/doom/DoomClassicBuildInstructions.txt" target="_blank">Build Instructions</a>. <img src='http://iphone.keyvisuals.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>For more information check out <a href="http://www.idsoftware.com/doom-classic/doomdevelopment.htm" target="_blank">Development on Doom Classic</a> By John Carmack, Technical Director, Id Software.</p>
<p>If you&#8217;re not an iPhone developer you can purchase the game from the <a href="http://itunes.apple.com/us/app/doom-classic/id336347946?mt=8" target="_blank">AppStore</a></p>
<p><img class="size-full wp-image-612 alignright" title="doomClassic_iphone" src="http://iphone.keyvisuals.com/wp-content/uploads/2009/11/doomClassic_iphone.jpg" alt="doomClassic_iphone" width="297" height="420" /></p>
<p><strong>Features:</strong></p>
<p>Play the legendary first person shooter, DOOM, with an iPhone or iPod Touch. Fight through 36 missions in four action-packed episodes: Knee-Deep in the Dead, Shores of Hell, Inferno, and Thy Flesh Consumed.</p>
<p>Experience DOOM multiplayer on your mobile device, including Deathmatch and Cooperative play for up to four players via wireless internet.</p>
<p>Choose from three different control types and customize the interface to suit your style.</p>
<p>Explore the depths of Mars while utilizing the topdown map to help you explore and save your game on the fly.</p>
<p>Listen to the original soundtrack or disable it and use your own iPod music.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=DOOM+Classic+for+iPhone+Source+Code+Available&amp;link=http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/&amp;notes=Those%20cool%20guys%20at%20iD%20Software%20have%20released%20the%20source%20code%20to%20the%20hugely%20popular%20DOOM%20Classic%20game%20for%20iPhone%20%26amp%3B%20iPodTouch.%20It%20has%20been%20released%20under%20the%20GPL%20License%20and%20can%20be%20downloaded%20from%20HERE.%20You%27ll%20probably%20also%20want%20to%20read%20the%20Build%20Instructions.%20%3B-%29%0D%0A%0D%0AFor%20more%20information%20check%20out&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/apps/doom-classic-for-iphone-source-code-available/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Launch App Store Search to your Developer Account</title>
		<link>http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/</link>
		<comments>http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 22:20:12 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=211</guid>
		<description><![CDATA[Here&#8217;s a handy code if you would like to add a button to your app that allows users to click it and be taken directly to a search listing of ALL your apps on the iTunes App Store. (see below) This is alot handier than adding a button/link to each individual app Blog this on [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a handy code if you would like to add a button to your app that allows users to click it and be taken directly to a search listing of ALL your apps on the iTunes App Store. (see below) This is alot handier than adding a button/link to each individual app <img src='http://iphone.keyvisuals.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Launch+App+Store+Search+to+your+Developer+Account&amp;link=http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/&amp;notes=Here%27s%20a%20handy%20code%20if%20you%20would%20like%20to%20add%20a%20button%20to%20your%20app%20that%20allows%20users%20to%20click%20it%20and%20be%20taken%20directly%20to%20a%20search%20listing%20of%20ALL%20your%20apps%20on%20the%20iTunes%20App%20Store.%20%28see%20below%29%20This%20is%20alot%20handier%20than%20adding%20a%20button%2Flink%20to%20each%20individual%20app%20%3B-%29&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/code-snippets/launch-app-store-search-to-your-developer-account/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sending an SMS message from your app</title>
		<link>http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/</link>
		<comments>http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 22:16:35 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=208</guid>
		<description><![CDATA[If you would like to launch the SMS app and send a predefined message use the code below Blog this on Blogger Share this on del.icio.us Digg this! Share this on Facebook Post on Google Buzz Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Tweet This! Get [...]]]></description>
			<content:encoded><![CDATA[<p>If you would like to launch the SMS app and send a predefined message use the code below</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Sending+an+SMS+message+from+your+app&amp;link=http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/&amp;notes=If%20you%20would%20like%20to%20launch%20the%20SMS%20app%20and%20send%20a%20predefined%20message%20use%20the%20code%20below&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/code-snippets/sending-an-sms-message-from-your-app/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Calling a Phone Number from your Application</title>
		<link>http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/</link>
		<comments>http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 22:14:05 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=205</guid>
		<description><![CDATA[If you would like to add a button to your application and have it launch the Phone app to dial a pre-defined phone number use the code below. Blog this on Blogger Share this on del.icio.us Digg this! Share this on Facebook Post on Google Buzz Share this on Reddit Stumble upon something good? Share [...]]]></description>
			<content:encoded><![CDATA[<p>If you would like to add a button to your application and have it launch the Phone app to dial a pre-defined phone number use the code below.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Calling+a+Phone+Number+from+your+Application&amp;link=http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/&amp;notes=If%20you%20would%20like%20to%20add%20a%20button%20to%20your%20application%20and%20have%20it%20launch%20the%20Phone%20app%20to%20dial%20a%20pre-defined%20phone%20number%20use%20the%20code%20below.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/code-snippets/calling-a-phone-number-from-your-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to hide the UIStatus Bar</title>
		<link>http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/</link>
		<comments>http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 22:10:22 +0000</pubDate>
		<dc:creator>keyvisuals</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://iphone.keyvisuals.com/?p=200</guid>
		<description><![CDATA[This has got to be one of the top questions asked by new app developers. &#8220;How do I hide the UIStatus Bar?&#8221; You can use the code snippet below or add UIStatusBarHidden to your info.Plist file, change it&#8217;s type to boolean and add a check mark to the box. Blog this on Blogger Share this [...]]]></description>
			<content:encoded><![CDATA[<p>This has got to be one of the top questions asked by new app developers. <em>&#8220;How do I hide the UIStatus Bar?&#8221;</em></p>
<p>You can use the code snippet below or add <strong>UIStatusBarHidden</strong> to your info.Plist file, change it&#8217;s type to boolean and add a check mark to the box.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=219&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=How+to+hide+the+UIStatus+Bar&amp;link=http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/&amp;notes=This%20has%20got%20to%20be%20one%20of%20the%20top%20questions%20asked%20by%20new%20app%20developers.%20%22How%20do%20I%20hide%20the%20UIStatus%20Bar%3F%22%0D%0A%0D%0AYou%20can%20use%20the%20code%20snippet%20below%20or%20add%20UIStatusBarHidden%20to%20your%20info.Plist%20file%2C%20change%20it%27s%20type%20to%20boolean%20and%20add%20a%20check%20mark%20to%20the%20box.&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://iphone.keyvisuals.com/code-snippets/how-to-hide-the-uistatus-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

