<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-9017208940051771851.post3499042248215018615..comments</id><updated>2010-06-30T09:21:00.290-04:00</updated><title type='text'>Comments on iPhone SDK Articles: Localizating iPhone Apps - Custom Formatter</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.iphonesdkarticles.com/feeds/3499042248215018615/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html'/><author><name>jai</name><uri>http://www.blogger.com/profile/09514342500729931901</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9017208940051771851.post-2715116766482885467</id><published>2009-03-23T09:56:00.000-04:00</published><updated>2009-03-23T09:56:00.000-04:00</updated><title type='text'>@Anonymous To which class does this property "setM...</title><content type='html'>@Anonymous To which class does this property "setMaximumIntegerDigits" to?&lt;BR/&gt;&lt;BR/&gt;I am not sure I understand your question.&lt;BR/&gt;&lt;BR/&gt;Happy Programming,&lt;BR/&gt;iPhone SDK Articles</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/2715116766482885467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/2715116766482885467'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html?showComment=1237816560000#c2715116766482885467' title=''/><author><name>iPhone SDK Articles</name><uri>http://www.blogger.com/profile/08386394388537674897</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='16542777069554124446'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html' ref='tag:blogger.com,1999:blog-9017208940051771851.post-3499042248215018615' source='http://www.blogger.com/feeds/9017208940051771851/posts/default/3499042248215018615' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9017208940051771851.post-4471564591660775860</id><published>2009-03-23T09:51:00.000-04:00</published><updated>2009-03-23T09:51:00.000-04:00</updated><title type='text'>@mmilano You need to do this in text changed metho...</title><content type='html'>@mmilano You need to do this in text changed method of the text box and then count the number of characters entered. &lt;BR/&gt;&lt;BR/&gt;Hope this helps.&lt;BR/&gt;&lt;BR/&gt;Happy Programming,&lt;BR/&gt;iPhone SDK Articles</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/4471564591660775860'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/4471564591660775860'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html?showComment=1237816260000#c4471564591660775860' title=''/><author><name>iPhone SDK Articles</name><uri>http://www.blogger.com/profile/08386394388537674897</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='16542777069554124446'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html' ref='tag:blogger.com,1999:blog-9017208940051771851.post-3499042248215018615' source='http://www.blogger.com/feeds/9017208940051771851/posts/default/3499042248215018615' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9017208940051771851.post-340133164850323605</id><published>2009-03-20T18:21:00.000-04:00</published><updated>2009-03-20T18:21:00.000-04:00</updated><title type='text'>a question about making a custom formatter.suppose...</title><content type='html'>a question about making a custom formatter.&lt;BR/&gt;&lt;BR/&gt;suppose i want to have my input formatted to the pattern, "##-##-##". more importantly, i would like to have an input field that allows the person to enter their number; as they type, the value displayed should build to the right.&lt;BR/&gt;&lt;BR/&gt;example, step by step:&lt;BR/&gt;person types: 1&lt;BR/&gt;display: 1&lt;BR/&gt;&lt;BR/&gt;person types: 3&lt;BR/&gt;display: 13&lt;BR/&gt;&lt;BR/&gt;person types: 5&lt;BR/&gt;display: 13-5&lt;BR/&gt;&lt;BR/&gt;person types: 7&lt;BR/&gt;display: 13-57&lt;BR/&gt;&lt;BR/&gt;person types: 8&lt;BR/&gt;display: 13-57-8&lt;BR/&gt;&lt;BR/&gt;person types: 9&lt;BR/&gt;display: 13-57-89&lt;BR/&gt;&lt;BR/&gt;any advice? &lt;BR/&gt;i can only get the formatter to return the following - in step three (above), the results are:&lt;BR/&gt;&lt;BR/&gt;   display: "1-35"&lt;BR/&gt;instead of "13-5."&lt;BR/&gt;&lt;BR/&gt;and so on( e.g.: "1-35-78" in step 5.&lt;BR/&gt;&lt;BR/&gt;thanks in advance.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/340133164850323605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/340133164850323605'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html?showComment=1237587660000#c340133164850323605' title=''/><author><name>mmilano</name><uri>http://www.blogger.com/profile/02871107766071978166</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html' ref='tag:blogger.com,1999:blog-9017208940051771851.post-3499042248215018615' source='http://www.blogger.com/feeds/9017208940051771851/posts/default/3499042248215018615' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9017208940051771851.post-5239518684729685293</id><published>2009-03-20T16:45:00.000-04:00</published><updated>2009-03-20T16:45:00.000-04:00</updated><title type='text'>hi, and thanks. was wondering about the init of th...</title><content type='html'>hi, and thanks. &lt;BR/&gt;was wondering about the init of the custom formatter. &lt;BR/&gt;&lt;BR/&gt;if i want to set some of the specific properties, such as "setMaximumIntegerDigits", as an example, would i want to do that in an override of the init method?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/5239518684729685293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/5239518684729685293'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html?showComment=1237581900000#c5239518684729685293' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html' ref='tag:blogger.com,1999:blog-9017208940051771851.post-3499042248215018615' source='http://www.blogger.com/feeds/9017208940051771851/posts/default/3499042248215018615' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9017208940051771851.post-3938457701477980542</id><published>2009-01-13T20:55:00.000-05:00</published><updated>2009-01-13T20:55:00.000-05:00</updated><title type='text'>The source code is fixed. I had to change the meth...</title><content type='html'>The source code is fixed. I had to change the method name from init to initWithLocale&lt;BR/&gt;&lt;BR/&gt;Happy Programming,&lt;BR/&gt;iPhone SDK Articles</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/3938457701477980542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/3938457701477980542'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html?showComment=1231898100000#c3938457701477980542' title=''/><author><name>iPhone SDK Articles</name><uri>http://www.blogger.com/profile/08386394388537674897</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='16542777069554124446'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html' ref='tag:blogger.com,1999:blog-9017208940051771851.post-3499042248215018615' source='http://www.blogger.com/feeds/9017208940051771851/posts/default/3499042248215018615' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9017208940051771851.post-6838570112342149212</id><published>2009-01-08T14:34:00.000-05:00</published><updated>2009-01-08T14:34:00.000-05:00</updated><title type='text'>when i compile your code with release mode,it has ...</title><content type='html'>when i compile your code with release mode,&lt;BR/&gt;it has exception error while running.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/6838570112342149212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9017208940051771851/3499042248215018615/comments/default/6838570112342149212'/><link rel='alternate' type='text/html' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html?showComment=1231443240000#c6838570112342149212' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.iphonesdkarticles.com/2008/11/localizating-iphone-apps-custom.html' ref='tag:blogger.com,1999:blog-9017208940051771851.post-3499042248215018615' source='http://www.blogger.com/feeds/9017208940051771851/posts/default/3499042248215018615' type='text/html'/></entry></feed>