<?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: Quick iPhone SDK Observation</title>
	<atom:link href="http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/</link>
	<description>All Mac, All the Time</description>
	<lastBuildDate>Mon, 02 Jan 2012 13:41:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Matt</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-51874</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 20 Jan 2009 21:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-51874</guid>
		<description>Thanks!

I wonder if I made that typo, or if the constant itself has changed since I wrote this post.  Either way, the correction is noted and updated in the post :)</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>I wonder if I made that typo, or if the constant itself has changed since I wrote this post.  Either way, the correction is noted and updated in the post <img src='http://www.macfanatic.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tommy</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-51798</link>
		<dc:creator>tommy</dc:creator>
		<pubDate>Mon, 19 Jan 2009 23:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-51798</guid>
		<description>There&#039;s a typo in the original post: it&#039;s &lt;code&gt;&#039;UIKeyboardTypeEmailAddress&#039;&lt;/code&gt; not &lt;code&gt;&#039;UIKeyboardTypeSingleEmailAddressing&#039;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>There&#8217;s a typo in the original post: it&#8217;s <code>'UIKeyboardTypeEmailAddress'</code> not <code>'UIKeyboardTypeSingleEmailAddressing'</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-49746</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 21 Dec 2008 06:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-49746</guid>
		<description>I&#039;m with Rew, I really need the phone layout with a period. Grr...</description>
		<content:encoded><![CDATA[<p>I&#8217;m with Rew, I really need the phone layout with a period. Grr&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-31711</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 16 May 2008 16:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-31711</guid>
		<description>You could always file a bug report as a feature request.</description>
		<content:encoded><![CDATA[<p>You could always file a bug report as a feature request.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rew</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-31667</link>
		<dc:creator>Rew</dc:creator>
		<pubDate>Fri, 16 May 2008 04:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-31667</guid>
		<description>&lt;code&gt;
typedef enum {
   UIKeyboardTypeDefault,
   UIKeyboardTypeASCIICapable,
   UIKeyboardTypeNumbersAndPunctuation,
   UIKeyboardTypeURL,
   UIKeyboardTypeNumberPad,
   UIKeyboardTypePhonePad,
   UIKeyboardTypeNamePhonePad,
   UIKeyboardTypeEmailAddress,
} UIKeyboardType;
&lt;/code&gt;

Missing from this list is a keyboard type which is very similar to UIKeyboardTypeNumberPad but includes a period character. I want an input field for a currency value - the best option I have from the above list is UIKeyboardTypeNumbersAndPunctuation but this isn&#039;t as tidy as UIKeyboardTypeNumberPad, the latter only has numerals.

I&#039;m hoping a new Keyboard Type is added within a future version of the SDK.</description>
		<content:encoded><![CDATA[<p><code><br />
typedef enum {<br />
   UIKeyboardTypeDefault,<br />
   UIKeyboardTypeASCIICapable,<br />
   UIKeyboardTypeNumbersAndPunctuation,<br />
   UIKeyboardTypeURL,<br />
   UIKeyboardTypeNumberPad,<br />
   UIKeyboardTypePhonePad,<br />
   UIKeyboardTypeNamePhonePad,<br />
   UIKeyboardTypeEmailAddress,<br />
} UIKeyboardType;<br />
</code></p>
<p>Missing from this list is a keyboard type which is very similar to UIKeyboardTypeNumberPad but includes a period character. I want an input field for a currency value &#8211; the best option I have from the above list is UIKeyboardTypeNumbersAndPunctuation but this isn&#8217;t as tidy as UIKeyboardTypeNumberPad, the latter only has numerals.</p>
<p>I&#8217;m hoping a new Keyboard Type is added within a future version of the SDK.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-27040</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 20 Mar 2008 17:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-27040</guid>
		<description>Nevermind.  I see now that the UI reference pages show a &quot;conforms to&quot; section of each class documenting the protocols they conform to.</description>
		<content:encoded><![CDATA[<p>Nevermind.  I see now that the UI reference pages show a &#8220;conforms to&#8221; section of each class documenting the protocols they conform to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-27038</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 20 Mar 2008 17:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-27038</guid>
		<description>Yes, that keyboardType property is in the HelloWorldClassic sample, but I can&#039;t find it in the documentation of UITextField.  Sweet.</description>
		<content:encoded><![CDATA[<p>Yes, that keyboardType property is in the HelloWorldClassic sample, but I can&#8217;t find it in the documentation of UITextField.  Sweet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-26446</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sun, 09 Mar 2008 07:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-26446</guid>
		<description>Nope, this simply means that developers will easily be able to tailor the keyboard to the specialized task at hand.  All the native Apple apps already do this, but it is nice that Apple provided the functionality so easily to developers.</description>
		<content:encoded><![CDATA[<p>Nope, this simply means that developers will easily be able to tailor the keyboard to the specialized task at hand.  All the native Apple apps already do this, but it is nice that Apple provided the functionality so easily to developers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/comment-page-1/#comment-26445</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 09 Mar 2008 07:03:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfanatic.net/blog/2008/03/07/quick-iphone-sdk-observation/#comment-26445</guid>
		<description>Does this mean that developers can create a new keypad layout and cause it to pop up as the default keypad?</description>
		<content:encoded><![CDATA[<p>Does this mean that developers can create a new keypad layout and cause it to pop up as the default keypad?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

