<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Someone at Apple, please review stance on PhoneGap</title>
	<atom:link href="http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: iphonedevelopment</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-277263</link>
		<dc:creator>iphonedevelopment</dc:creator>
		<pubDate>Tue, 15 Dec 2009 19:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-277263</guid>
		<description>Developing for the iPhone is super tricky. Even if you think your onto a great app idea you have to keep a close eye on apples policies, its stopped be several times from getting my app in the appstore. SO FRUSTRATING!</description>
		<content:encoded><![CDATA[<p>Developing for the iPhone is super tricky. Even if you think your onto a great app idea you have to keep a close eye on apples policies, its stopped be several times from getting my app in the appstore. SO FRUSTRATING!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nosredna</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273529</link>
		<dc:creator>Nosredna</dc:creator>
		<pubDate>Wed, 20 May 2009 14:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273529</guid>
		<description>My problem with Apple&#039;s response is twofold. 1) Inconsistency. Some apps get through and some don&#039;t. 2) The reason Apple gives is &quot;external framework.&quot; If Apple could be more clear about what&#039;s bugging them in these cases, that would remove a lot of uncertainty. This issue is just way too gray.

Anything you can do with PhoneGap, you can do without it with a bit of code, all using Apple&#039;s SDK.</description>
		<content:encoded><![CDATA[<p>My problem with Apple&#8217;s response is twofold. 1) Inconsistency. Some apps get through and some don&#8217;t. 2) The reason Apple gives is &#8220;external framework.&#8221; If Apple could be more clear about what&#8217;s bugging them in these cases, that would remove a lot of uncertainty. This issue is just way too gray.</p>
<p>Anything you can do with PhoneGap, you can do without it with a bit of code, all using Apple&#8217;s SDK.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: perenzo</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273518</link>
		<dc:creator>perenzo</dc:creator>
		<pubDate>Wed, 20 May 2009 08:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273518</guid>
		<description>If you just need the features of PhoneGap but not a custom app on the AppStore you should have a look at Big5 and Big5lite available on the AppStore http://www.big5apps.com</description>
		<content:encoded><![CDATA[<p>If you just need the features of PhoneGap but not a custom app on the AppStore you should have a look at Big5 and Big5lite available on the AppStore <a href="http://www.big5apps.com" rel="nofollow">http://www.big5apps.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atnan</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273516</link>
		<dc:creator>atnan</dc:creator>
		<pubDate>Wed, 20 May 2009 00:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273516</guid>
		<description>@jmatthewpryor There&#039;s a big difference between loading content and loading dynamic, interpreted code from any source.

I&#039;m guessing a big issue for Apple is that PhoneGap accepts gap:// requests from the embedded webkit regardless of the domain that makes the call. This means the trust model is slightly different to an application that makes explicit requests for content from known domains.

The reason I think the issue is with a subset of PhoneGap rather than the whole framework is due to the way Apple&#039;s AppStore application works. The AppStore API returns UI configuration code via a web service returning plist (XML) formatted data. This means that Apple can customise their application UI without releasing a new version of their application. The difference to PhoneGap is that a) the content comes from a known source, and b) the UI code is for presentation only, and does not call out to native APIs.

I&#039;ll be interested to see whether removing the online mode and/or disabling gap:// dispatching from anything other than file:// URIs will make a difference to Apple accepting the use of PhoneGap. I suspect that&#039;s the only thing holding it back, rather than malice on Apple&#039;s part.</description>
		<content:encoded><![CDATA[<p>@jmatthewpryor There&#8217;s a big difference between loading content and loading dynamic, interpreted code from any source.</p>
<p>I&#8217;m guessing a big issue for Apple is that PhoneGap accepts gap:// requests from the embedded webkit regardless of the domain that makes the call. This means the trust model is slightly different to an application that makes explicit requests for content from known domains.</p>
<p>The reason I think the issue is with a subset of PhoneGap rather than the whole framework is due to the way Apple&#8217;s AppStore application works. The AppStore API returns UI configuration code via a web service returning plist (XML) formatted data. This means that Apple can customise their application UI without releasing a new version of their application. The difference to PhoneGap is that a) the content comes from a known source, and b) the UI code is for presentation only, and does not call out to native APIs.</p>
<p>I&#8217;ll be interested to see whether removing the online mode and/or disabling gap:// dispatching from anything other than file:// URIs will make a difference to Apple accepting the use of PhoneGap. I suspect that&#8217;s the only thing holding it back, rather than malice on Apple&#8217;s part.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jmatthewpryor</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273514</link>
		<dc:creator>jmatthewpryor</dc:creator>
		<pubDate>Tue, 19 May 2009 22:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273514</guid>
		<description>Forgive my lack of understanding but how it is any different that a PhoneGap based app could use a UIWebView to download dynamic content that any of the huge number of existing apps in the AppStore that clearly do the same thing?
This is not an attempt to understand Apple&#039;s policy, its really a technical question. What additional vulnerabilities or unwanted surprises would/could a PhoneGap based app expose a user to that any Objective-C based app that used UIWebView didn&#039;t?
I use the ABC (Australia) app regularly which clearly downloads dynamic content in to a custom UI (not mobile Safari), and I assume that this content could include Javascript. Is it the fact that PhoneGap exposes native API to JS that creates the problem?
I feel it would be better to take the &quot;you should have known/that&#039;s the way it is&quot; element out of this discussion and move it to a rational technical conversation about what PhoneGap can &amp; can&#039;t do &amp; stay within a reasonably unambiguous interpretation of the AppStore listing rules.
Constructive &amp; detailed technical input seems a far more valid contribution to the debate at this stage.</description>
		<content:encoded><![CDATA[<p>Forgive my lack of understanding but how it is any different that a PhoneGap based app could use a UIWebView to download dynamic content that any of the huge number of existing apps in the AppStore that clearly do the same thing?<br />
This is not an attempt to understand Apple&#8217;s policy, its really a technical question. What additional vulnerabilities or unwanted surprises would/could a PhoneGap based app expose a user to that any Objective-C based app that used UIWebView didn&#8217;t?<br />
I use the ABC (Australia) app regularly which clearly downloads dynamic content in to a custom UI (not mobile Safari), and I assume that this content could include Javascript. Is it the fact that PhoneGap exposes native API to JS that creates the problem?<br />
I feel it would be better to take the &#8220;you should have known/that&#8217;s the way it is&#8221; element out of this discussion and move it to a rational technical conversation about what PhoneGap can &amp; can&#8217;t do &amp; stay within a reasonably unambiguous interpretation of the AppStore listing rules.<br />
Constructive &amp; detailed technical input seems a far more valid contribution to the debate at this stage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajaxery</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273513</link>
		<dc:creator>ajaxery</dc:creator>
		<pubDate>Tue, 19 May 2009 22:53:42 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273513</guid>
		<description>i started writing an app in PhoneGap, but the framework is so young and needs a lot of work. once i found out that it doesn&#039;t work with iphone os 3.0, i stopped using it.</description>
		<content:encoded><![CDATA[<p>i started writing an app in PhoneGap, but the framework is so young and needs a lot of work. once i found out that it doesn&#8217;t work with iphone os 3.0, i stopped using it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kb0</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273511</link>
		<dc:creator>kb0</dc:creator>
		<pubDate>Tue, 19 May 2009 22:33:14 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273511</guid>
		<description>I have to agree with those here who think Apple is in the right.  Apple clearly stated their policy and PhoneGap clearly violates that policy.

The reason that policy is in place is because Apple is attempting to protect the user and the user experience.  They don&#039;t want a piece of software on someone&#039;s phone that can allow other, non-reviewed and potentially harmful software to run on the iphone.

That said, I think phoneGap is a great idea and would&#039;ve been my entryway into iphone development.  However, every app I&#039;ve wanted to write doesn&#039;t need the full iphone API and can be done as a web app because of webkit&#039;s great features (like cool transition effects, code caching, local database, etc.).</description>
		<content:encoded><![CDATA[<p>I have to agree with those here who think Apple is in the right.  Apple clearly stated their policy and PhoneGap clearly violates that policy.</p>
<p>The reason that policy is in place is because Apple is attempting to protect the user and the user experience.  They don&#8217;t want a piece of software on someone&#8217;s phone that can allow other, non-reviewed and potentially harmful software to run on the iphone.</p>
<p>That said, I think phoneGap is a great idea and would&#8217;ve been my entryway into iphone development.  However, every app I&#8217;ve wanted to write doesn&#8217;t need the full iphone API and can be done as a web app because of webkit&#8217;s great features (like cool transition effects, code caching, local database, etc.).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vsviridov</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273509</link>
		<dc:creator>vsviridov</dc:creator>
		<pubDate>Tue, 19 May 2009 19:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273509</guid>
		<description>@idio - you shouldn&#039;t call the whole platform &quot;crap&quot; just because of several impeding factors. By same logic iPhone is crap, due to their application acceptance policy. Also, moko people never called the platform as the &quot;iPhone killer&quot;, they were pursuing completely different goals. &quot;iPhone killer&quot; hype is just poor journalism.</description>
		<content:encoded><![CDATA[<p>@idio &#8211; you shouldn&#8217;t call the whole platform &#8220;crap&#8221; just because of several impeding factors. By same logic iPhone is crap, due to their application acceptance policy. Also, moko people never called the platform as the &#8220;iPhone killer&#8221;, they were pursuing completely different goals. &#8220;iPhone killer&#8221; hype is just poor journalism.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nunziofiore</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273505</link>
		<dc:creator>nunziofiore</dc:creator>
		<pubDate>Tue, 19 May 2009 17:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273505</guid>
		<description>@idio but do you really know what s phonegap? It&#039;s nothing more than a tools that extends the UIWebView.. It&#039;s not an external tool... it&#039;s something that Apple released in it&#039;s language... not a plugin or a third part code... The PhonGap developer are great, yes... but what they do it&#039;s not so difficult or so far from what you can make alone when you make your own iPhone application... the best point they give to us is the time they spent coding PhonGap... all time that we can earn developing our tools... 
I repeat, my analysis since three months ago it was perfect and i trust in PhoneGap. A lot of application were apcetted in Apple Store &lt;a&gt;look here a list&lt;/a&gt; and the app I m developing are simmilar to those... but in last week i read also in the google group associated this news about some app rejected.. and I wanna understand one time for all: it&#039;s a PhoneGap last release fault? We can fix it? Because the rule somebody wrote in one of the comment upper that row, it was a rule also when the app in list werw apcetted.. what change really now?
Perhaps it s all a missunderstanding and app rejected had really some content that it&#039;s against the Apples&#039; rules... but it&#039;s not PhoneGap the problem...</description>
		<content:encoded><![CDATA[<p>@idio but do you really know what s phonegap? It&#8217;s nothing more than a tools that extends the UIWebView.. It&#8217;s not an external tool&#8230; it&#8217;s something that Apple released in it&#8217;s language&#8230; not a plugin or a third part code&#8230; The PhonGap developer are great, yes&#8230; but what they do it&#8217;s not so difficult or so far from what you can make alone when you make your own iPhone application&#8230; the best point they give to us is the time they spent coding PhonGap&#8230; all time that we can earn developing our tools&#8230;<br />
I repeat, my analysis since three months ago it was perfect and i trust in PhoneGap. A lot of application were apcetted in Apple Store <a>look here a list</a> and the app I m developing are simmilar to those&#8230; but in last week i read also in the google group associated this news about some app rejected.. and I wanna understand one time for all: it&#8217;s a PhoneGap last release fault? We can fix it? Because the rule somebody wrote in one of the comment upper that row, it was a rule also when the app in list werw apcetted.. what change really now?<br />
Perhaps it s all a missunderstanding and app rejected had really some content that it&#8217;s against the Apples&#8217; rules&#8230; but it&#8217;s not PhoneGap the problem&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: idio</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273502</link>
		<dc:creator>idio</dc:creator>
		<pubDate>Tue, 19 May 2009 16:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273502</guid>
		<description>&quot;It’s a big damn for business, when you discover only when you’re on release phase, that your program can’t be added to the app store for ridiculous thing…&quot;

No offense, but you must be a really, really bad business if you didn&#039;t realize this type of application would be rejected. I don&#039;t regularly program the iPhone, and it&#039;s certainly not where i make my money. But seriously even I knew this was their policy. Did you even read the license agreement??? It&#039;s your own fault.</description>
		<content:encoded><![CDATA[<p>&#8220;It’s a big damn for business, when you discover only when you’re on release phase, that your program can’t be added to the app store for ridiculous thing…&#8221;</p>
<p>No offense, but you must be a really, really bad business if you didn&#8217;t realize this type of application would be rejected. I don&#8217;t regularly program the iPhone, and it&#8217;s certainly not where i make my money. But seriously even I knew this was their policy. Did you even read the license agreement??? It&#8217;s your own fault.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: idio</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273501</link>
		<dc:creator>idio</dc:creator>
		<pubDate>Tue, 19 May 2009 16:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273501</guid>
		<description>This is a poorly written, factually incorrect article. I don&#039;t know what you guys are talking about.

RegexKitLite and Google Toolbox for Mac are totally different projects than what PhoneGap does, and the Apple review process was entirely clear from the beginning that these types of run-time environments built on top the iPhone were not going to be tolerated. Heck, before the SDK even came out I read an article stating exactly that; Apple made their position abundantly clear.

You guys can bitch and moan all you want, but you&#039;re wrong. I&#039;m not saying I like Apple&#039;s policy, but it&#039;s not like they pulled a bait and switch on anyone here. You knew what you signed up for, and if you don&#039;t like it... Uh.. Build your own phone.

Or can you all go running to that &quot;iPhone killer&quot; open-moko... Oh wait, that thing is a piece of crap :P</description>
		<content:encoded><![CDATA[<p>This is a poorly written, factually incorrect article. I don&#8217;t know what you guys are talking about.</p>
<p>RegexKitLite and Google Toolbox for Mac are totally different projects than what PhoneGap does, and the Apple review process was entirely clear from the beginning that these types of run-time environments built on top the iPhone were not going to be tolerated. Heck, before the SDK even came out I read an article stating exactly that; Apple made their position abundantly clear.</p>
<p>You guys can bitch and moan all you want, but you&#8217;re wrong. I&#8217;m not saying I like Apple&#8217;s policy, but it&#8217;s not like they pulled a bait and switch on anyone here. You knew what you signed up for, and if you don&#8217;t like it&#8230; Uh.. Build your own phone.</p>
<p>Or can you all go running to that &#8220;iPhone killer&#8221; open-moko&#8230; Oh wait, that thing is a piece of crap :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vvtim</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273496</link>
		<dc:creator>vvtim</dc:creator>
		<pubDate>Tue, 19 May 2009 16:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273496</guid>
		<description>@JonathanLeech With the iPhone ecosystem, it&#039;s pretty darn easy to recoup the $100 registration fee with a $1 app.  People buy anything.</description>
		<content:encoded><![CDATA[<p>@JonathanLeech With the iPhone ecosystem, it&#8217;s pretty darn easy to recoup the $100 registration fee with a $1 app.  People buy anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JonathanLeech</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273493</link>
		<dc:creator>JonathanLeech</dc:creator>
		<pubDate>Tue, 19 May 2009 15:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273493</guid>
		<description>Now I am glad I didn&#039;t spend the $100 bucks on registering as a developer. It would already be tough to recoup that with app store sales of a $1 app, but impossible if Apple wouldn&#039;t accept it anyway.</description>
		<content:encoded><![CDATA[<p>Now I am glad I didn&#8217;t spend the $100 bucks on registering as a developer. It would already be tough to recoup that with app store sales of a $1 app, but impossible if Apple wouldn&#8217;t accept it anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mudx</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273490</link>
		<dc:creator>mudx</dc:creator>
		<pubDate>Tue, 19 May 2009 15:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273490</guid>
		<description>Wow, that&#039;s ridiculous.  I was thinking about developing for the iPhone, but now, I&#039;m going to be holding out until some serious changes are made.</description>
		<content:encoded><![CDATA[<p>Wow, that&#8217;s ridiculous.  I was thinking about developing for the iPhone, but now, I&#8217;m going to be holding out until some serious changes are made.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mdmadph</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273488</link>
		<dc:creator>mdmadph</dc:creator>
		<pubDate>Tue, 19 May 2009 14:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273488</guid>
		<description>@nunziofiore

That&#039;s why big companies have teams of IP lawyers working on a thing for months before anything is ever released (or at least they &lt;i&gt;should&lt;/i&gt;).</description>
		<content:encoded><![CDATA[<p>@nunziofiore</p>
<p>That&#8217;s why big companies have teams of IP lawyers working on a thing for months before anything is ever released (or at least they <i>should</i>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: randomrandom</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273481</link>
		<dc:creator>randomrandom</dc:creator>
		<pubDate>Tue, 19 May 2009 12:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273481</guid>
		<description>After the last 6 months of negative iPhone/App store stories, is anyone really so credulous as to be surprised by this kind of behaviour from Apple? When will developers put their money where their mouths are and switch to an open platform like Android?</description>
		<content:encoded><![CDATA[<p>After the last 6 months of negative iPhone/App store stories, is anyone really so credulous as to be surprised by this kind of behaviour from Apple? When will developers put their money where their mouths are and switch to an open platform like Android?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dangoor</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273479</link>
		<dc:creator>dangoor</dc:creator>
		<pubDate>Tue, 19 May 2009 11:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273479</guid>
		<description>FWIW, there is apparently now a version of PhoneGap up on github that doesn&#039;t include the &quot;online mode&quot; that can download new code. If Apple allows PhoneGap apps that do not download new code, then I&#039;d say they&#039;re being consistent with their policy (which exists to ensure that programs are reviewed before they go into the App Store).</description>
		<content:encoded><![CDATA[<p>FWIW, there is apparently now a version of PhoneGap up on github that doesn&#8217;t include the &#8220;online mode&#8221; that can download new code. If Apple allows PhoneGap apps that do not download new code, then I&#8217;d say they&#8217;re being consistent with their policy (which exists to ensure that programs are reviewed before they go into the App Store).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nunziofiore</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273477</link>
		<dc:creator>nunziofiore</dc:creator>
		<pubDate>Tue, 19 May 2009 09:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273477</guid>
		<description>It&#039;s a big damn for business, when you discover only when you&#039;re on release phase, that your program can&#039;t be added to the app store for ridiculous thing...
I don&#039;t understand why this happen. There&#039;s also a lot of PhonGap application that were apcetted in last months... why some other&#039;s are not?
Sorry for quick and dirty english...
Nunzio Fiore</description>
		<content:encoded><![CDATA[<p>It&#8217;s a big damn for business, when you discover only when you&#8217;re on release phase, that your program can&#8217;t be added to the app store for ridiculous thing&#8230;<br />
I don&#8217;t understand why this happen. There&#8217;s also a lot of PhonGap application that were apcetted in last months&#8230; why some other&#8217;s are not?<br />
Sorry for quick and dirty english&#8230;<br />
Nunzio Fiore</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atnan</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273475</link>
		<dc:creator>atnan</dc:creator>
		<pubDate>Tue, 19 May 2009 07:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273475</guid>
		<description>@segdeha, Downloaded code accessing native functionality via Phonegap&#039;s messaging system (the gap:// URI) is the problem, and has nothing to do with whether or not the overall solution uses Apple&#039;s built-in UIWebView. The &lt;i&gt;-webView:shouldStartLoadWithRequest:navigationType:&lt;/i&gt; implementation in &lt;i&gt;PhoneGapDelegate&lt;/i&gt; is precisely the kind of interpreter that section 3.3.2 intends to prevent.</description>
		<content:encoded><![CDATA[<p>@segdeha, Downloaded code accessing native functionality via Phonegap&#8217;s messaging system (the gap:// URI) is the problem, and has nothing to do with whether or not the overall solution uses Apple&#8217;s built-in UIWebView. The <i>-webView:shouldStartLoadWithRequest:navigationType:</i> implementation in <i>PhoneGapDelegate</i> is precisely the kind of interpreter that section 3.3.2 intends to prevent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: segdeha</title>
		<link>http://ajaxian.com/archives/someone-at-apple-please-review-stance-on-phonegap/comment-page-1#comment-273473</link>
		<dc:creator>segdeha</dc:creator>
		<pubDate>Tue, 19 May 2009 05:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6818#comment-273473</guid>
		<description>@atnan, You&#039;re leaving out an important phrase from your analysis: &quot;...except for code that is interpreted and run by Apple’s Published APIs
and built-in interpreter(s).&quot; UIWebView is clearly a built-in interpreter of the downloaded code, so I &lt;b&gt;think&lt;/b&gt; this has more to do with Apple retaining control of the user experience.</description>
		<content:encoded><![CDATA[<p>@atnan, You&#8217;re leaving out an important phrase from your analysis: &#8220;&#8230;except for code that is interpreted and run by Apple’s Published APIs<br />
and built-in interpreter(s).&#8221; UIWebView is clearly a built-in interpreter of the downloaded code, so I <b>think</b> this has more to do with Apple retaining control of the user experience.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

