<?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>iPhone Tutorial &#124; iPhone iOS4 iPad SDK Development &#38; Programming Blog &#187; iPhone Trends &amp; Stats</title>
	<atom:link href="http://www.edumobile.org/iphone/category/iphone-trends-stats/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edumobile.org/iphone</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 09:42:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Calculate StringLength in MacOS</title>
		<link>http://www.edumobile.org/iphone/iphone-trends-stats/calculate-stringlength-in-macos/</link>
		<comments>http://www.edumobile.org/iphone/iphone-trends-stats/calculate-stringlength-in-macos/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 10:43:14 +0000</pubDate>
		<dc:creator>Sushant</dc:creator>
				<category><![CDATA[iPhone Trends & Stats]]></category>
		<category><![CDATA[Calculate StringLength in MacOS]]></category>
		<category><![CDATA[iphone development]]></category>
		<category><![CDATA[iPhone example]]></category>

		<guid isPermaLink="false">http://www.edumobile.org/iphone/?p=2693</guid>
		<description><![CDATA[This is the very simple example, in this program we will see how to calculate string length in MacOS.]]></description>
			<content:encoded><![CDATA[<p>This is the very simple example, in this program we will see how to calculate string length in MacOS.</p>
<p><strong>Step 1:</strong> Create a Cocoa Application from Mac OS X . Give the application name &#8220;StringsLength&#8221;.</p>
<p><strong>Step 2:</strong> Xcode automatically creates the directory structure and adds essential frameworks to it. You can explore the directory structure to check out the content of the directory.</p>
<p><strong>Step 3:</strong> xpand the Other  Sources folder, then  you can see one file &#8220;main.m&#8221;. We need to make changes in this file.</p>
<p><strong>Step 4:</strong> Open the main.m file and make the following changes in the file.</p>
<div class="codesnip-container" >
<div class="objc codesnip" style="font-family:monospace;"><span class="co1">#import &lt;Cocoa/Cocoa.h&gt;</span></p>
<p>&nbsp;<span class="kw4">int</span> main<span class="br0">&#40;</span><span class="kw4">int</span> argc, <span class="kw4">char</span> <span class="sy0">*</span>argv<span class="br0">&#91;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><br />
&nbsp;<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">char</span> s1<span class="br0">&#91;</span>250<span class="br0">&#93;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">char</span> s2<span class="br0">&#91;</span>250<span class="br0">&#93;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span class="kw3">printf</span></a><span class="br0">&#40;</span><span class="st0">&quot;Enter string s1:<span class="es0">\n</span>&quot;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/scanf.html"><span class="kw3">scanf</span></a><span class="br0">&#40;</span><span class="st0">&quot;%s&quot;</span>,<span class="sy0">&amp;</span>s1<span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span class="kw3">printf</span></a><span class="br0">&#40;</span><span class="st0">&quot;Enter string s2:<span class="es0">\n</span>&quot;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/scanf.html"><span class="kw3">scanf</span></a><span class="br0">&#40;</span><span class="st0">&quot;%s&quot;</span>,<span class="sy0">&amp;</span>s2<span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span><span class="br0">&#40;</span><a href="http://www.opengroup.org/onlinepubs/009695399/functions/strlen.html"><span class="kw3">strlen</span></a><span class="br0">&#40;</span>s1<span class="br0">&#41;</span> <span class="sy0">==</span> <a href="http://www.opengroup.org/onlinepubs/009695399/functions/strlen.html"><span class="kw3">strlen</span></a><span class="br0">&#40;</span>s2<span class="br0">&#41;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span class="kw3">printf</span></a><span class="br0">&#40;</span><span class="st0">&quot;Length of string s1 is equal to length of string s2<span class="es0">\n</span>&quot;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span> <span class="kw1">if</span><span class="br0">&#40;</span><a href="http://www.opengroup.org/onlinepubs/009695399/functions/strlen.html"><span class="kw3">strlen</span></a><span class="br0">&#40;</span>s1<span class="br0">&#41;</span> &lt; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/strlen.html"><span class="kw3">strlen</span></a><span class="br0">&#40;</span>s2<span class="br0">&#41;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span class="kw3">printf</span></a><span class="br0">&#40;</span><span class="st0">&quot;Length of string s1 is less than length of string s2<span class="es0">\n</span>&quot;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span class="kw3">printf</span></a><span class="br0">&#40;</span><span class="st0">&quot;Length of string s1 is greater than length of string s2<span class="es0">\n</span>&quot;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">return</span> NSApplicationMain<span class="br0">&#40;</span>argc, &nbsp;<span class="br0">&#40;</span><span class="kw4">const</span> <span class="kw4">char</span> <span class="sy0">**</span><span class="br0">&#41;</span> argv<span class="br0">&#41;</span>;<br />
<span class="br0">&#125;</span></div>
</div>
<p><strong>Step 5:</strong> Now compile and run the example and see the output on the console.</p>
<p><a href="http://www.edumobile.org/iphone/wp-content/uploads/2011/02/1-7.jpg"><img class="alignnone size-medium wp-image-2696" title="1-7" src="http://www.edumobile.org/iphone/wp-content/uploads/2011/02/1-7-300x114.jpg" alt="" width="300" height="114" /></a></p>
<p>You can <strong>Download SourceCode</strong> from here <a href="http://www.edumobile.org/iphone/wp-content/uploads/2011/02/StringsLength.zip">StringsLength</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edumobile.org/iphone/iphone-trends-stats/calculate-stringlength-in-macos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>157 App Stats For You</title>
		<link>http://www.edumobile.org/iphone/iphone-trends-stats/157-app-stats-for-you/</link>
		<comments>http://www.edumobile.org/iphone/iphone-trends-stats/157-app-stats-for-you/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 10:27:15 +0000</pubDate>
		<dc:creator>vishy</dc:creator>
				<category><![CDATA[iPhone Trends & Stats]]></category>

		<guid isPermaLink="false">http://www.edumobile.org/iphone/?p=2584</guid>
		<description><![CDATA[There's a wealth of datapoints out there on the growth of apps, and it can be overwhelming. So Mobile Entertainment has tried to help. They have compiled a presentation with 157 different stats, taking in app stores, consumer usage, analyst predictions, and app success stories. The presentation is free to view, embed and download.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a wealth of datapoints out there on the growth of apps, and it can be overwhelming. So Mobile Entertainment has tried to help. They have compiled a presentation with 157 different stats, taking in app stores, consumer usage, analyst predictions, and app success stories. The presentation, which is free to view, embed and download, is below.</p>
<p>The last few slides gets pretty intereresting as they give real numbers of some of the top performing apps.</p>
<p><img style="visibility: hidden; width: 0px; height: 0px;" src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyODIyOTk2MTE3MTgmcHQ9MTI4MjI5OTYyNzUzMSZwPTEwMTkxJmQ9c3NfZW1iZWQmZz*yJm89NGNlMDM2YjFlODYy/NGRhOTg5Yzc5Y2M*ZWY3NjVhYzgmb2Y9MA==.gif" border="0" alt="" width="0" height="0" /></p>
<div id="__ss_5012860" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="157 Mobile App Stats You Should Know About" href="http://www.slideshare.net/stuartdredge/157-mobile-app-stats-you-should-know-about">157 Mobile App Stats You Should Know About</a></strong><object id="__sse5012860" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=apps-research-2-100819110824-phpapp02&amp;stripped_title=157-mobile-app-stats-you-should-know-about" /><param name="name" value="__sse5012860" /><param name="allowfullscreen" value="true" /><embed id="__sse5012860" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=apps-research-2-100819110824-phpapp02&amp;stripped_title=157-mobile-app-stats-you-should-know-about" name="__sse5012860" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/stuartdredge">stuartdredge</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.edumobile.org/iphone/iphone-trends-stats/157-app-stats-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make $400 to $5000 DAILY from Ad Revenues With Your Free App</title>
		<link>http://www.edumobile.org/iphone/iphone-trends-stats/make-400-to-5000-daily-from-ad-revenues-with-your-free-app/</link>
		<comments>http://www.edumobile.org/iphone/iphone-trends-stats/make-400-to-5000-daily-from-ad-revenues-with-your-free-app/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 09:37:01 +0000</pubDate>
		<dc:creator>vishy</dc:creator>
				<category><![CDATA[iPhone Trends & Stats]]></category>
		<category><![CDATA[app money]]></category>
		<category><![CDATA[in apps advertising]]></category>
		<category><![CDATA[iphone apps money]]></category>
		<category><![CDATA[mobile ads]]></category>

		<guid isPermaLink="false">http://www.edumobile.org/iphone/?p=2538</guid>
		<description><![CDATA[The iPhone Apps get-rich-quick landscape is best suited for one of two people development shops. However, some companies are also making good revenues - specifically from in-app advertising. In the report below, AdWhirl says that top apps can make $400 to $5,000 per day on ads.]]></description>
			<content:encoded><![CDATA[<p>The iPhone Apps get-rich-quick landscape is best suited for one of two people development shops. However, some companies are also making good revenues &#8211; specifically from in-app advertising.</p>
<p>In the report below, AdWhirl says that top apps can make $400 to $5,000 per day on ads. The average CPM works out to around $2 per 1000 impressions. It may not look  impressive but its substantially better than the CPM rates at Facebook or MySpace apps.</p>
<p>However &#8211; These apps are from the most popular section on the app store&#8230; listing within the top 100 free apps. This is what is causing a problem for small developers. You need to crack into the top 100 if you want to get to the $400 daily revenue target.<br />
<BR><BR><br />
<a title="View Adwhirl iPhone Advertising Snapshot on Scribd" href="http://www.scribd.com/doc/15007502/Adwhirl-iPhone-Advertising-Snapshot" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">Adwhirl iPhone Advertising Snapshot</a> <object id="doc_567029969742355" name="doc_567029969742355" height="500" width="100%" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" rel="media:document" resource="http://d1.scribdassets.com/ScribdViewer.swf?document_id=15007502&#038;access_key=key-3s48cgm63pjdcqkkcsn&#038;page=1&#038;viewMode=list" xmlns:media="http://search.yahoo.com/searchmonkey/media/" xmlns:dc="http://purl.org/dc/terms/" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"><param name="wmode" value="opaque"><param name="bgcolor" value="#ffffff"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="document_id=15007502&#038;access_key=key-3s48cgm63pjdcqkkcsn&#038;page=1&#038;viewMode=list"><embed id="doc_567029969742355" name="doc_567029969742355" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=15007502&#038;access_key=key-3s48cgm63pjdcqkkcsn&#038;page=1&#038;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="500" width="100%" wmode="opaque" bgcolor="#ffffff"></embed></object><br />
<BR><BR><br />
You can access the <a href="http://www.scribd.com/doc/15007502/Adwhirl-iPhone-Advertising-Snapshot" target="_blank">Adwhirl data report directly here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edumobile.org/iphone/iphone-trends-stats/make-400-to-5000-daily-from-ad-revenues-with-your-free-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distimo Mobile Report &#8211; July 2010</title>
		<link>http://www.edumobile.org/iphone/iphone-trends-stats/distimo-mobile-report-july-2010/</link>
		<comments>http://www.edumobile.org/iphone/iphone-trends-stats/distimo-mobile-report-july-2010/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 10:13:57 +0000</pubDate>
		<dc:creator>vishy</dc:creator>
				<category><![CDATA[iPhone Trends & Stats]]></category>
		<category><![CDATA[app statistics]]></category>
		<category><![CDATA[app stats]]></category>
		<category><![CDATA[distimo report]]></category>
		<category><![CDATA[ipad stats]]></category>
		<category><![CDATA[iphone app stats]]></category>
		<category><![CDATA[mobile statistics]]></category>

		<guid isPermaLink="false">http://www.edumobile.org/iphone/?p=2523</guid>
		<description><![CDATA[This report covers the Apple App Store for iPad and iPhone (with specific focus on in-app purchases), as well as BlackBerry App World (Worldwide), Google Android Market, Nokia Ovi Store, Palm App Catalog and Windows Marketplace for Mobile for June 2010 in the United States. The major findings are:]]></description>
			<content:encoded><![CDATA[<p>This report covers the Apple App Store for iPad and iPhone (with specific focus on in-app purchases), as well as BlackBerry App World (Worldwide), Google Android Market, Nokia Ovi Store, Palm App Catalog and Windows Marketplace for Mobile for June 2010 in the United States. The major findings are:</p>
<p>* The percentage of applications with in-app purchases is significantly higher in the Apple App Store for iPad (10%) than in the Apple App Store for iPhone (2%). The Games and Social Networking categories in both stores have the highest proportion of applications with in-app purchases available.</p>
<p>* The most successful free applications that monetized using in-app purchases this month in the Apple App Store for iPhone are MobiTV (MobiTV), ESPN 2010 FIFA World Cup (ESPN) and Tap Fish (BayView Labs).</p>
<p>* The most successful paid applications that monetized using in-app purchases this month in the Apple App Store for iPhone are Guitar Hero (Activision Publishing, Inc.), TomTom U.S.A. (TomTom International BV) and Call of Duty: World at War: Zombies II (Activision Publishing, Inc.).</p>
<p>* Mirroring the Distimo report covering May 2010, Pages and iBooks, published by Apple Inc, are again the number one paid and free applications on the Apple App Store for iPad, respectively.</p>
<p>* Three out of the ten most popular applications in the Apple App Store for iPhone were published by Electronic Arts.</p>
<p>* Quickoffice Connect Mobile Suite for iPad entered the top 10 highest ranked paid applications chart in the 6th position. It was the top grossing application in the Apple App Store for iPad after Pages by Apple Inc.</p>
<p>* Nine out of the ten most popular paid applications on the Apple App Store for iPhone are Games, however only two out of the ten most popular free applications are Games. In the Nokia Ovi Store, seven out of ten of the most popular paid applications are Games, while only three out of ten of the most popular free applications are Games.</p>
<p>You can <a href="http://distimo.createsend5.com/t/r/l/mdjhhk/tukhsutu/j" target="_blank">download the report here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edumobile.org/iphone/iphone-trends-stats/distimo-mobile-report-july-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Average of 10 Apps Downloaded Per Month by iPhone and Android Users</title>
		<link>http://www.edumobile.org/iphone/iphone-trends-stats/an-average-of-10-apps-downloaded-per-month-by-iphone-and-android-users/</link>
		<comments>http://www.edumobile.org/iphone/iphone-trends-stats/an-average-of-10-apps-downloaded-per-month-by-iphone-and-android-users/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 04:50:11 +0000</pubDate>
		<dc:creator>vishy</dc:creator>
				<category><![CDATA[iPhone Trends & Stats]]></category>
		<category><![CDATA[appstore download figures]]></category>
		<category><![CDATA[iphone download numbers]]></category>

		<guid isPermaLink="false">http://edumobile.org/iphone/?p=11</guid>
		<description><![CDATA[iPhone and Android users are downloading approximately ten new apps every month, according to mobile ad network AdMob’s latest Mobile Metrics Report for July 2009. However, surprisingly owners of Apple’s iPod touch, are downloading an average of 18 apps per month – beating iPhone and Android users. Meanwhile, users who regularly download paid apps are spending]]></description>
			<content:encoded><![CDATA[<p>iPhone and Android users are downloading approximately ten new apps every month, according to mobile ad network AdMob’s latest Mobile Metrics Report for July 2009.</p>
<p>However, surprisingly owners of Apple’s iPod touch, are downloading an average of 18 apps per month &#8211; beating iPhone and Android users. Meanwhile, users who regularly download paid apps are spending around $9 a month on five paid downloads.</p>
<p>The report goes on to say that more than half of iPhone and Android users spend 30 minutes plus, a day using apps on their devices. Also,  more than 90% browse and search for apps on their devices &#8211; which is not very surprising for Android, because it does not yet have an associated web-store.</p>
<p>AdMob’s report also goes on to compare the different smartphone platforms in terms of usage of its ad network. In July, iPhone accounted for 60%, followed by BlackBerry handsets with 13%, and Android devices with 12%.</p>
<p>You may read and download the full detailed <a href="http://metrics.admob.com/2009/08/july-2009-metrics-report/" target="_blank">report here</a> and <a href="http://metrics.admob.com/2009/08/july-metrics-app-survey-data/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edumobile.org/iphone/iphone-trends-stats/an-average-of-10-apps-downloaded-per-month-by-iphone-and-android-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VCs Continue to Invest more and more in iPhone Startups</title>
		<link>http://www.edumobile.org/iphone/iphone-trends-stats/vcs-continue-to-invest-more-and-more-in-iphone-startups/</link>
		<comments>http://www.edumobile.org/iphone/iphone-trends-stats/vcs-continue-to-invest-more-and-more-in-iphone-startups/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 06:13:24 +0000</pubDate>
		<dc:creator>vishy</dc:creator>
				<category><![CDATA[iPhone Trends & Stats]]></category>
		<category><![CDATA[iphone apps trends]]></category>
		<category><![CDATA[iphone statistics]]></category>
		<category><![CDATA[iphone vc investment]]></category>
		<category><![CDATA[vc money]]></category>

		<guid isPermaLink="false">http://edumobile.org/iphone/?p=8</guid>
		<description><![CDATA[A recent study and data by the folks at Chubbybrain shows that VCs have invested over $100 million into companies and startups working in the iPhone space. 17 companies formed part of th study and some interesting stats are shown below. The study limited the scope of this study to startups whose core functionality and [...]]]></description>
			<content:encoded><![CDATA[<p>A recent study and data by the folks at Chubbybrain shows that VCs have invested over $100 million into companies and startups working in the iPhone space. 17 companies formed part of th study and some interesting stats are shown below. The study limited the scope of this study to startups whose core functionality and capability is centered on the iPhone.</p>
<p><a href="http://edumobile.org/iphone/wp-content/uploads/2010/01/databreakdown1.png"><img class="aligncenter size-full wp-image-9" src="http://edumobile.org/iphone/wp-content/uploads/2010/01/databreakdown1.png" alt="" width="446" height="155" /></a></p>
<p>Interestingly there seems to be a co-relation between the number of iPhones sold and the amount of VC money being invested &#8211; with both numbers growing relatively together over a span of time.</p>
<p>You can see all the <a href="http://www.chubbybrain.com/blog/2009/06/the-iphone-inspired-2nd-economy-over-100-million-goes-from-vcs-to-iphone-startups/" target="_self">fancy stats and graphs with some interesting trends here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edumobile.org/iphone/iphone-trends-stats/vcs-continue-to-invest-more-and-more-in-iphone-startups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

