<?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>D17's blog &#187; iphone</title>
	<atom:link href="http://blog.d-17.com/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.d-17.com</link>
	<description>About hardcore technology and softcore business</description>
	<lastBuildDate>Thu, 22 Apr 2010 09:18:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Combining multiple UITextFields and a UITableView in a nice way for an iPhone app: part 2</title>
		<link>http://blog.d-17.com/2009/10/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app-part-2/</link>
		<comments>http://blog.d-17.com/2009/10/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app-part-2/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 16:19:21 +0000</pubDate>
		<dc:creator>Dirk de Kok</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[UITableView]]></category>

		<guid isPermaLink="false">http://blog.d-17.com/?p=118</guid>
		<description><![CDATA[My  last blog post was about creating a form for an iPhone application by combining multiple UITextFields in a UITableView. I outlined the problems with this kind of screens. The first problem is the destruction of data already entered when scrolling the field off screen and secondly, app crashes when the field with focus [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="/2009/08/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app/"> last blog post</a> was about creating a form for an iPhone application by combining multiple UITextFields in a UITableView. I outlined the problems with this kind of screens. The first problem is the destruction of data already entered when scrolling the field off screen and secondly, app crashes when the field with focus is scrolled off screen and you touch inside another textfield. The solution I proposed was to nest the UITableView inside a UIScrollview. After receiving feedback I came up with a second solution:</p>
<ol>
<li>extend a UITableViewController instead of implementing UITableviewDataSource and UITableViewDelegate yourself</li>
<li>disable reuse of cells by using a unique cell identifier:</li>
<p style="font: normal normal normal 10px/normal Monaco; text-align: left; margin: 0px;"><span style="color: #5c2699;">NSString</span> *CellIdentifier = [<span style="color: #5c2699;">NSString</span> <span style="color: #2e0d6e;">stringWithFormat</span>: <span style="color: #c41a16;">@"Cell%i"</span>, indexPath.<span style="color: #2e0d6e;">row</span>];</p>
<p style="font: normal normal normal 10px/normal Monaco; text-align: left; margin: 0px;"><span style="color: #5c2699;">UITableViewCell</span> *cell = [tableView <span style="color: #2e0d6e;">dequeueReusableCellWithIdentifier</span>:CellIdentifier];</p>
<p style="font: normal normal normal 10px/normal Monaco; text-align: left; margin: 0px;"><span style="color: #aa0d91;">if</span> (cell == <span style="color: #aa0d91;">nil</span>) {</p>
<p style="font: normal normal normal 10px/normal Monaco; color: #2e0d6e; text-align: left; margin: 0px;margin-left:15px"><span style="color: #000000;"> cell = [[</span><span style="color: #5c2699;">UITableViewCell</span><span style="color: #000000;"> </span>alloc<span style="color: #000000;">] </span>initWithStyle<span style="color: #000000;">:</span>UITableViewCellStyleDefault<span style="color: #000000;"> </span>reuseIdentifier<span style="color: #000000;">:CellIdentifier];</span></p>
<p style="font: normal normal normal 10px/normal Monaco; color: #2e0d6e; text-align: left; margin: 0px;margin-left:15px"><span style="color: #000000;"> ..</span></p>
<p style="font: normal normal normal 10px/normal Monaco; color: #2e0d6e; text-align: left; margin: 0px;"><span style="color: #000000;">}</span></p>
</ol>
<p>The UITableViewController handles scrolling into view when the keyboard is shown quite nicely. Using the unique identifier will prevent a cell and it&#8217;s content to be reused. And I had to agree to some of the feedback: using a UIScrollView to nest a tableView is kind of a hack.</p>
<p>There is a down side to this: UITableViewControllers don&#8217;t like to be combined with other view controllers, so you have to use a NavigationController or TabBarController to offer further interaction possibilities. I tried to, but never managed nicely to have for instance a UIToolBar over the UITableView.</p>
<p>Try it out and let me know what you think!</p>
<p>Download XCode project <a href="http://blog.d-17.com/wp-content/uploads/2009/10/TestTableViewWithKeyboard2.zip">TestTableViewWithKeyboard2</a> with demo using UITableView to create a form.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.d-17.com/2009/10/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combining multiple UITextFields and a UITableView in a nice way for an iPhone app</title>
		<link>http://blog.d-17.com/2009/08/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app/</link>
		<comments>http://blog.d-17.com/2009/08/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 23:54:05 +0000</pubDate>
		<dc:creator>Dirk de Kok</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[UITableView]]></category>
		<category><![CDATA[UITextField]]></category>

		<guid isPermaLink="false">http://blog.d-17.com/?p=85</guid>
		<description><![CDATA[Update: also read Part 2 explaining a different way of solving this problem.
So a decent number of iPhone apps will not only show things like data, but also offer you the possibility to edit data. Many controls like UISlider, UISwitch and UITextfield are provided by Apple to create some type of edit screen, almost like [...]]]></description>
			<content:encoded><![CDATA[<p>Update: also read <a href="/2009/10/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app-part-2/">Part 2</a> explaining a different way of solving this problem.</p>
<p>So a decent number of iPhone apps will not only show things like data, but also offer you the possibility to edit data. Many controls like <a href="http://developer.apple.com/iphone/library/documentation/uikit/reference/UISlider_Class/Reference/Reference.html">UISlider</a>, <a href="http://developer.apple.com/iphone/library/documentation/uikit/reference/UISwitch_Class/Reference/Reference.html">UISwitch</a> and <a href="http://developer.apple.com/iphone/library/documentation/uikit/reference/UITextField_Class/Reference/UITextField.html">UITextfield</a> are provided by Apple to create some type of edit screen, almost like a web form on a HTML page. Creating a simple form that only covers the top half of your screen is simple: you create your elements like UITextField at the top, and when you touch inside the field the onscreen keyboard will show up. You hit a Done Button or a non-UITextField control and the keyboard disappears again.</p>
<p>Now, when you have more data to add/edit than will fit in half a screen, things get more daunting:</p>
<ol>
<li>the keyboard should only be visible when editing a UITextField</li>
<li>when touching a UITextField so that the keyboard becomes visible, it should not cover the field you are editing</li>
<li>with the keyboard visible you should still be able to scroll to all elements of your editing form, and not have parts be covered indefinitely by the keyboard</li>
</ol>
<p>Well, the most natural kind of view to use to display all controls is a UITableView. Apple uses it herself, look at the editing screen for your Mail.app settings. But when you just throw in a UITableView, you run into problems:</p>
<ol>
<li>when scrolling off screen, table cells are reused and therefore also its subviews like UITextFields, which causes your newly entered data to be destroyed</li>
<li>when having a UITextField being firstResponder (cursor in it),  you scroll it off screen and the touch inside another UITextField that then becomes firstResponder, your app will crash. This is problably because the first UITextField is destroyed before it can resignFirstResponder</li>
</ol>
<p>So how do we do this then? Apple does use a UITableView in some way, but the above problems are show stoppers. Well the answer is: use a UITableView, but don&#8217;t let it scroll.</p>
<p><span id="more-85"></span><br />
The trick is to nest a UITableView inside a UIScrollView. And then to give the table and the contentSize of exactly the same size that the whole form is. So if you have 10 cells each 44 pixels high, you create a UITableView with a height of 440, and put that inside a UIScrollView with a contentSize that is also 440 pixels high. This way the table is exactly the size of all the cells combined. This way no scrolling for the UITableView and therefore no reuse of cell&#8217;s with all it&#8217;s problems.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-90" style="margin-top: 25px; margin-bottom: 25px;" title="nesting_uitableview_inside_uiscrollview" src="http://blog.d-17.com/wp-content/uploads/2009/08/nesting_uitableview_inside_uiscrollview.png" alt="nesting_uitableview_inside_uiscrollview" width="830" height="394" /></p>
<p>Here&#8217;s the code to set the size correctly:</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Monaco; color: #007400;">// actually more object in reality</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px Monaco; color: #c41a16;"><span style="color: #aa0d91;">self</span><span style="color: #000000;">.</span><span style="color: #3f6e74;">countries</span><span style="color: #000000;"> = [[</span><span style="color: #5c2699;">NSMutableArray</span><span style="color: #000000;"> </span><span style="color: #2e0d6e;">alloc</span><span style="color: #000000;">]</span><span style="color: #2e0d6e;">initWithObjects</span><span style="color: #000000;">: </span>@&#8221;Belgium&#8221;<span style="color: #000000;">, </span>@&#8221;Brittain&#8221;<span style="color: #000000;">,nil];</span></p>
<p><span style="font-family: Monaco, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: normal; font-size: 10px; color: #3f6e74;"><span style="color: #000000;"><span style="white-space: pre;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; white-space: normal; font-size: 13px; line-height: 19px;"> </span> </span>[</span><span style="color: #aa0d91;">self</span><span style="color: #000000;">.</span>scrollView<span style="color: #000000;"> </span><span style="color: #2e0d6e;">setContentSize</span><span style="color: #000000;">:</span><span style="color: #2e0d6e;">CGSizeMake</span><span style="color: #000000;">(</span><span style="color: #1c00cf;">320</span><span style="color: #000000;">, (</span>CELL_HEIGHT<span style="color: #000000;"> * [</span><span style="color: #aa0d91;">self</span><span style="color: #000000;">.</span>countries<span style="color: #000000;"> </span><span style="color: #2e0d6e;">count</span><span style="color: #000000;">]))];</span></span></p>
<p><span style="font-family: Monaco, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: normal; font-size: 10px; color: #3f6e74;"><span style="color: #000000;"><span style="color: #3f6e74;"><span style="color: #000000;"><span style="white-space: pre;"> </span>[</span><span style="color: #aa0d91;">self</span><span style="color: #000000;">.</span>tableView<span style="color: #000000;"> </span><span style="color: #2e0d6e;">setFrame</span><span style="color: #000000;">:</span><span style="color: #2e0d6e;">CGRectMake</span><span style="color: #000000;">(</span><span style="color: #1c00cf;">0</span><span style="color: #000000;">, </span><span style="color: #1c00cf;">0</span><span style="color: #000000;">, </span><span style="color: #1c00cf;">320</span><span style="color: #000000;">, (</span>CELL_HEIGHT<span style="color: #000000;"> * [</span><span style="color: #aa0d91;">self</span><span style="color: #000000;">.</span>countries<span style="color: #000000;"> </span><span style="color: #2e0d6e;">count</span><span style="color: #000000;">]))];</span></span></span></span></p>
<p>Well, that&#8217;s the main trick. Added to that, you want to resize the frame when the onscreen keyboard is shown and scroll the UITextField you touched in to scroll into view. Have a look at the source code to see how that&#8217;s done.</p>
<p><a href="http://blog.d-17.com/wp-content/uploads/2009/08/TextfieldsWithKeyboard.zip">Download TextfieldsWithKeyboard XCode iPhone project</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.d-17.com/2009/08/combining-multiple-uitextfields-and-a-uitableview-in-a-nice-way-for-an-iphone-app/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Iphone OS 3.0 announced</title>
		<link>http://blog.d-17.com/2009/03/iphone-os-3-announced/</link>
		<comments>http://blog.d-17.com/2009/03/iphone-os-3-announced/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 12:34:52 +0000</pubDate>
		<dc:creator>Dirk de Kok</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[iphone OS 3.0]]></category>

		<guid isPermaLink="false">http://blog.d-17.com/?p=53</guid>
		<description><![CDATA[
Yesterday Apple held meeting to announce the new upcoming version of their Iphone OS, version 3 (we&#8217;re now at 2.2.1), to be released somewhere this summer. Already days ahead was a buzz going on, with lot&#8217;s of people making lists of new features they thought/wished were added to the already popular platform.
Major awaited features were [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-55" title="Iphone OS 3.0" src="http://blog.d-17.com/wp-content/uploads/2009/03/iphoneohessthreepointoh234.jpg" alt="" width="224" height="147" /></p>
<p>Yesterday <a href="http://www.apple.com">Apple</a> held meeting to announce the new upcoming version of their Iphone OS, version 3 (we&#8217;re now at 2.2.1), to be released somewhere this summer. Already days ahead was a buzz going on, with lot&#8217;s of people making lists of new features they thought/wished were added to the already popular platform.</p>
<p>Major awaited features were cut/copy-paste, Flash, background processes, MMS, tethering (using your phone as a modem to your laptop), wireless keyboards, better app organisation</p>
<p>Majority of new features are indeed implemented. Cut/copy-past is there in a nice fashion as is MMS and tethering. Flash is still at large, Adobe and Apple are<a href="http://gizmodo.com/5143766/flash-on-iphone-is-coming-up-to-adobe-to-clear-tech-hurdles"> trying their best</a> to solve the technical issues. Background processes are not there, but instead Apple opted for Push notifications. This will allow a service to push a short message (alert, text, audio) to an application without the application being running. Wireless keyboards and better app organisation is still missing.</p>
<p>What is also interesting is the new payment models. Now, you could only charge per download. Added to this will be 3 new models: subscription to apps, purchase of additional content (great for media companies) and purchase of additional levels (great for gaming apps). This means you can also purchase new things from within the apps.</p>
<p>What is most interesting to me?  The push notification! I am working together with partners to create a messaging solution with a big focus on mobile. As third party apps, as opposed to the standard Mail.app on the Iphone, cannot run in the background with 2.0 it&#8217;s quite difficult to go head to head with Mail.app. Push notification will change that. As this services goes through Apple services, I am quite curious what they will charge though.</p>
<p>Other new features that were not so much anticipated are Search (through Spotlight), landscape keyboard, Google Maps libraries for third party apps.</p>
<p>I downloaded the beta SDK already, but unfortunately Apple doesn&#8217;t allow any disclosure of information or screenshots:( I honoustly hope they don&#8217;t make the mistake that they made with 2.0 again, to lift this NDA so late that no publisher dares to invest in publishing an Iphone 3.0 development book. Go over to <a href="http://www.crunchgear.com/2009/03/17/iphone-os-30-beta-hands-on/">Crunchgear to see some screenshots </a>(while it lasts).</p>
<p>OS 3.0 will be available this summer, and downloadable for current Iphone and Ipod touch users (Ipod users have to pay 10 USD). So you don&#8217;t have to get a new phone to be able to run 3.0, which is great. Big question: at what speed will users upgrade their OS, and will any (major) problems arise. </p>
<p>You can watch the full presentation here at the <a href="http://events.apple.com.edgesuite.net/0903lajkszg/event/index.html">Apple site</a>.</p>
<p>More reading about Iphone OS 3.0:</p>
<ul>
<li><a href="http://www.tuaw.com/2009/03/17/iphone-3-0-feature-roundup/">http://www.tuaw.com/2009/03/17/iphone-3-0-feature-roundup/</a></li>
<li><a href="http://i.gizmodo.com/5171796/iphone-30-os-guide-everything-you-need-to-know">http://i.gizmodo.com/5171796/iphone-30-os-guide-everything-you-need-to-know</a></li>
<li><a href="http://www.engadget.com/2009/03/17/iphone-os-3-0-hands-on/">http://www.engadget.com/2009/03/17/iphone-os-3-0-hands-on</a>/</li>
<li><a href="http://www.techmeme.com/090317/p61#a090317p61">Techmeme coverage of Iphone OS 3.0</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.d-17.com/2009/03/iphone-os-3-announced/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Battle of mobile platforms is taking off</title>
		<link>http://blog.d-17.com/2009/01/battle-of-mobile-platforms-is-taking-off/</link>
		<comments>http://blog.d-17.com/2009/01/battle-of-mobile-platforms-is-taking-off/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 17:59:55 +0000</pubDate>
		<dc:creator>Dirk de Kok</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[palm pre]]></category>

		<guid isPermaLink="false">http://blog.d-17.com/?p=35</guid>
		<description><![CDATA[
After Apple launched the Iphone 3G last summer, T-mobile will begin rolling out the Android platform in The Netherlands. Within weeks the HTC G1 will be available (the phone has been out in the USA since October and in the UK since November). And now, to the surprise of the whole industry Palm made a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/alexmuse/3181511496/in/set-72157612341582952/"><img class="alignright" style="width: 250px;" title="Android is Hot!" src="http://farm4.static.flickr.com/3349/3181511496_7a17579774.jpg?v=0" alt="" width="250" height="167" /></a></p>
<p>After <a href="http://www.apple.com">Apple</a> launched the <a href="http://www.apple.com/iphone/">Iphone 3G</a> last summer, <a href="http://www.t-mobile.nl/">T-mobile</a> will begin rolling out the <a href="http://code.google.com/android/">Android</a> platform in The Netherlands. Within weeks the <a href="http://www.htc.com/www/product/g1/overview.html">HTC G1</a> will be available (the phone has been out in the USA since October and in the UK since November). And now, to the surprise of the whole industry Palm made a strong comeback with the <a href="http://www.palm.com/us/products/phones/pre/index.html">Palm Pre</a>, running their brand new OS called <a href="http://developer.palm.com/">webOs</a>. It has been announced at <a href="http://www.cesweb.org/">CES</a> just last week, but yet has to get reviews and into the market.</p>
<p>So, it seems that we have at least 2 strong players with an outsider (Palm) ready to bring mobile computing to the next level, and really change that thing in our pockets and hands into a computer with a small screen instead of just an apparatus to call and text with. It&#8217;s not about that anymore, it&#8217;s about all the applications that you can run on.</p>
<p>What will determine the success of these platforms?</p>
<ul>
<li>user experience: usability, seamless integration, slick looks: Apple with having one device, one manufacturer has controls hardware, OS, store has created a complete package with eco-system around it. And of course it&#8217;s experience with good user interfaces and design for Mac and Ipod has given it a head start. Android is not a complete deal but a platform, that hardware manufactures have to run on their phones that will come in many shapes and forms.</li>
<li>good apps that can easily be purchased:
<ul>
<li>developer support: good language and good tooling. Apple offers Objective-C with a number of UI libraries, together with their IDE Xcode. Android is for 95 % Java, that is supported by Eclipse plugins. This means that all those Java developers out that can start creating Android apps in no time, while much less Objective-C developers are out there. Learning Objective-C and XCode will take some time for developers from other platforms.</li>
<li>easy app stores to browse, look, buy and download applications. Apple&#8217;s app store has already proved to be a success. Android&#8217;s app store has yet to kick in. Maybe multiple app stores will become available, that certainly will be more open but also more fragmented than Apple&#8217;s.</li>
<li> the creation of an ecosystem that makes it profitable for developers to create apps for a platform is crucial for turning phones into a mobile computing platform. Until now the Apple app store has been a success, offering free and paid apps. Selling an app is just submitting the app to the store, although Apple has r<a href="http://www.applematters.com/article/why-rejecting-apps-just-doesnt-matter/">ejected apps for unclear reasons</a>. This means that you do not know if your investment will make any money untill you submit the app, which is definitely a bad thing. Also installation of apps should not be <a href="http://www.nextgenmoco.com/2008/01/so-you-want-to-deploy-j2me-app-in-us.html">limited by telco settings or anything</a>.</li>
</ul>
</li>
<li>good availability of devices. For now Apple has chosen to sell the Iphone in most countries only together with a subscription plan with a mobile operator. For instance, if you are with Vodafone.nl but want an Iphone, you&#8217;re stuck. Of course the device is expensive (you can get it simlock free in Belgium for 650-700 EUR), but why not let users buy it simlock free? Android devices when on the market will soon be available in all kind of forms, and with or without subscription packages.</li>
<li>pricing: Apple is and will always be a brand that focuses on quality and less on competing on price. Android is open source and free, so let&#8217;s see if any manufacturer will create a cheap but powerful Android phone.</li>
</ul>
<p>And oh yeah, where are the mobile manufacturers? Nokia, Motorola, Ericsson? Motorola apparently is getting ready to<a href="http://www.techcrunch.com/2008/09/28/motorola-building-up-350-person-android-team-nokia-also-sniffing-around/"> move over to Android</a>.  Nokia still hangs on to Symbian, but that OS never got the leverage Iphone OS and Android seem to get. It will take a while though before Nokia admits that Symbian is dead, and that is has to switch over. So apparently it took computer companies to move over to the mobile industry to really make phones a success as a computing platform. Let&#8217;s hope they do not turn Android into a fragmented market that brings no value to end users and developers.</p>
<p>More reading:</p>
<ul>
<li><a href="http://www.phonedog.com/cell-phone-videos/t-mobile-g1-review-camera-photos-and-video-player.aspx">Phonedog.com review of HTC G1</a></li>
<li><a href="http://scobleizer.com/2009/01/08/palm-did-what-nokia-rim-and-microsoft-couldnt-build-a-better-experience-than-apple/">Robert Scoble&#8217;s post about the Palm Pre</a></li>
<li><a href="http://weblogs.java.net/blog/javakiddy/archive/2007/12/your_plastic_pa.html">Is Android&#8217;s language Java?</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.d-17.com/2009/01/battle-of-mobile-platforms-is-taking-off/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>T-mobile subscription plans with Iphone 3G for Netherlands</title>
		<link>http://blog.d-17.com/2008/07/t-mobile-subscription-plans-with-iphone-3g-for-netherlands/</link>
		<comments>http://blog.d-17.com/2008/07/t-mobile-subscription-plans-with-iphone-3g-for-netherlands/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 15:27:15 +0000</pubDate>
		<dc:creator>Dirk de Kok</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[t-mobile]]></category>

		<guid isPermaLink="false">http://blog.d-17.com/2008/07/01/t-mobile-subscription-plans-with-iphone-3g-for-netherlands/</guid>
		<description><![CDATA[The Netherlands is one of the last countries to get (legitimate) access  to Iphones. Of course, as the first generations lacked UMTS support nobody was bothered by that. But now on july 11th T-mobile will start offering Iphones in The Netherlands.
As their press announcement is in Dutch and Euro, I thought let&#8217;s translate and [...]]]></description>
			<content:encoded><![CDATA[<p>The Netherlands is one of the last countries to get (legitimate) access  to Iphones. Of course, as the first generations lacked UMTS support nobody was bothered by that. But now on july 11th <a href="http://www.t-mobile.nl/">T-mobile</a> will start offering Iphones in The Netherlands.</p>
<p>As <a href="http://www.t-mobile.nl/iphone/tarieven.html" title="http://www.t-mobile.nl/iphone/tarieven.html">their press announcement</a> is in Dutch and Euro, I thought let&#8217;s translate and convert also to USD. Below are the prices in Euro and USD, assuming 1 euro = 1.48 USD, and 2 year contracts.</p>
<p>SMS = short message service = text message for you americans.</p>
<table border="1" cellpadding="5" cellspacing="0">
<tr height="20">
<td><strong>minutes</strong></td>
<td><strong>SMS</strong></td>
<td><strong>price/m </strong><strong>(</strong>€<strong>)</strong></td>
<td><strong>$</strong></td>
<td><strong>8GB model (</strong>€<strong>)</strong></td>
<td><strong>$</strong></td>
<td><strong>16GB model </strong><strong>(</strong>€<strong>)</strong><strong>  </strong></td>
<td><strong>$</strong></td>
</tr>
<tr>
<td>150</td>
<td>150</td>
<td>29.95</td>
<td>44.33</td>
<td>79.95</td>
<td>118.33</td>
<td>159.95</td>
<td>236.73</td>
</tr>
<tr>
<td>300</td>
<td>300</td>
<td>44.95</td>
<td>66.53</td>
<td>1</td>
<td>1.48</td>
<td>79.95</td>
<td>118.33</td>
</tr>
<tr>
<td>500</td>
<td>500</td>
<td>64.95</td>
<td>96.13</td>
<td>1</td>
<td>1.48</td>
<td>19.95</td>
<td>29.53</td>
</tr>
</table>
<p>Including unlimited Internet usage (2048/384 Kbps), Visual voicemail.</p>
<p>It seems a good deal compared to the <a href="http://www.crunchgear.com/2008/07/01/iphone-3g-activation-process-detailed/">AT&amp;T pricing</a> :</p>
<p><em>&#8220;iPhone 3G will be available for $199 for the 8GB model and $299 for the 16GB model. These prices require two-year contracts&#8221;</em></p>
<p>Engadget has a <a href="http://www.engadget.com/2008/07/01/atandt-announces-iphone-3g-pricing-plans/">better overview</a>.</p>
<p>And even the subscriptions aren&#8217;t that expensive compared to <a href="http://www.t-mobile.nl/persoonlijk/htdocs/page/productinformatie/abonnementen/tarieven.aspx">normal no-phone T-Mobile NL subscripton plans</a>:</p>
<table border="1" cellpadding="5" cellspacing="0">
<thead>
<td colspan="2"><strong>Plan</strong></td>
<td colspan="2"><strong>minutes</strong></td>
<td><strong>Price/m</strong></td>
<td><strong>Price per minute</strong></td>
<td><strong><strong>Price per SMS</strong></strong></td>
</thead>
<tbody>
<tr>
<td colspan="2">Relax 100</td>
<td colspan="2">100</td>
<td><span class="wc106tableEuroSign">€ 14,50</span></td>
<td><span class="wc106tableEuroSign">€ 0,15</span></td>
<td><span class="wc106tableEuroSign">€ 0,25</span></td>
</tr>
<tr>
<td colspan="2">Relax 200</td>
<td colspan="2">200</td>
<td><span class="wc106tableEuroSign">€ 24,50</span></td>
<td><span class="wc106tableEuroSign">€ 0,12</span></td>
<td><span class="wc106tableEuroSign">€ 0,25</span></td>
</tr>
<tr>
<td colspan="2">Relax 300</td>
<td colspan="2">300</td>
<td><span class="wc106tableEuroSign">€ 34,50</span></td>
<td><span class="wc106tableEuroSign">€ 0,12</span></td>
<td><span class="wc106tableEuroSign">€ 0,25</span></td>
</tr>
<tr>
<td colspan="2">Relax 500</td>
<td colspan="2">500</td>
<td><span class="wc106tableEuroSign">€ 49,50</span></td>
<td><span class="wc106tableEuroSign">€ 0,10</span></td>
<td><span class="wc106tableEuroSign">€ 0,25</span></td>
</tr>
<tr>
<td colspan="2">Relax 1000</td>
<td colspan="2">1000</td>
<td><span class="wc106tableEuroSign">€ 94,50</span></td>
<td><span class="wc106tableEuroSign">€ 0,09</span></td>
<td><span class="wc106tableEuroSign">€ 0,25</span></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.d-17.com/2008/07/t-mobile-subscription-plans-with-iphone-3g-for-netherlands/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
