<?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: iPhone Coding Snippet: Live Character Counter, Word filter, and 1337 Translator For A UITextField</title>
	<atom:link href="http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/</link>
	<description>Conquering the mobile universe</description>
	<lastBuildDate>Fri, 10 Feb 2012 21:48:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Arthur Sabintsev</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-8858</link>
		<dc:creator>Arthur Sabintsev</dc:creator>
		<pubDate>Tue, 29 Nov 2011 17:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-8858</guid>
		<description>Thanks for the tutorial. As of iOS 2.0, you can achieve the same result without making a custom IBAction. You can use theÂ -(void)textViewDidChange:(UITextView *)textView method.</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial. As of iOS 2.0, you can achieve the same result without making a custom IBAction. You can use theÂ -(void)textViewDidChange:(UITextView *)textView method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Facebook App</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-7305</link>
		<dc:creator>Facebook App</dc:creator>
		<pubDate>Thu, 28 Jul 2011 11:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-7305</guid>
		<description>That&#039;s true and amazing article, really what i needed</description>
		<content:encoded><![CDATA[<p>That&#8217;s true and amazing article, really what i needed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stathis</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-7063</link>
		<dc:creator>Stathis</dc:creator>
		<pubDate>Mon, 04 Jul 2011 18:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-7063</guid>
		<description>Hi, thanks for this nice tutorial!

How i can filter the whole word and not letter by letter?

If i add multiple words in the filter, the monitor gets confused and filters the words really awkward! 

So, how i can make it monitor the exact words?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, thanks for this nice tutorial!</p>
<p>How i can filter the whole word and not letter by letter?</p>
<p>If i add multiple words in the filter, the monitor gets confused and filters the words really awkward! </p>
<p>So, how i can make it monitor the exact words?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Facebook Marketing</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-4607</link>
		<dc:creator>Facebook Marketing</dc:creator>
		<pubDate>Tue, 15 Feb 2011 07:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-4607</guid>
		<description>Nice</description>
		<content:encoded><![CDATA[<p>Nice</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-4418</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Tue, 18 Jan 2011 22:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-4418</guid>
		<description>&lt;code&gt;for(NSString * naughtyWord in filteredWords.allKeys)&lt;/code&gt;
should be written as
&lt;code&gt;for(NSString * naughtyWord in filteredWords)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code>for(NSString * naughtyWord in filteredWords.allKeys)</code><br />
should be written as<br />
<code>for(NSString * naughtyWord in filteredWords)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iPhone Coding Snippet: Live Character Counter, Word filter, and 1337 Translator For A UITextField &#124; iCode</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-3673</link>
		<dc:creator>iPhone Coding Snippet: Live Character Counter, Word filter, and 1337 Translator For A UITextField &#124; iCode</dc:creator>
		<pubDate>Sat, 30 Oct 2010 20:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-3673</guid>
		<description>[...] Original post on iCodeBlog [...]</description>
		<content:encoded><![CDATA[<p>[...] Original post on iCodeBlog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Singh</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-3672</link>
		<dc:creator>Amit Singh</dc:creator>
		<pubDate>Wed, 08 Sep 2010 06:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-3672</guid>
		<description>Thanks for great tutorial....this tutorial really help in my work...


Amit</description>
		<content:encoded><![CDATA[<p>Thanks for great tutorial&#8230;.this tutorial really help in my work&#8230;</p>
<p>Amit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TDub</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-3670</link>
		<dc:creator>TDub</dc:creator>
		<pubDate>Tue, 06 Jul 2010 04:27:17 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-3670</guid>
		<description>Sean,

You&#039;ll have to use a UIWebView for that. Then you can specify HTML instead of plain text and build complex &lt;i&gt;styles&lt;/i&gt; however you like.

Tyler</description>
		<content:encoded><![CDATA[<p>Sean,</p>
<p>You&#8217;ll have to use a UIWebView for that. Then you can specify HTML instead of plain text and build complex <i>styles</i> however you like.</p>
<p>Tyler</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike V</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-3669</link>
		<dc:creator>Mike V</dc:creator>
		<pubDate>Thu, 08 Apr 2010 00:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-3669</guid>
		<description>Your step 3 describes dragging from the &quot;Editing Changed&quot; action to &quot;File&#039;s Owner&quot;, but the graphic you display there is what you&#039;d get if you had selected File&#039;s Owner and opened the Connections tab, and then dragged from the Received Action textFieldDidUpdate to the textField on the View and scrolled to &quot;Editing Changed&quot;.

Right now, I&#039;m not getting it to work either way in that the NSLog operation takes off and never stops creating blank entries, so I figure I&#039;m missing a line of code involving &quot;naughtyWord&quot;.  (I&#039;m new to C).</description>
		<content:encoded><![CDATA[<p>Your step 3 describes dragging from the &#8220;Editing Changed&#8221; action to &#8220;File&#8217;s Owner&#8221;, but the graphic you display there is what you&#8217;d get if you had selected File&#8217;s Owner and opened the Connections tab, and then dragged from the Received Action textFieldDidUpdate to the textField on the View and scrolled to &#8220;Editing Changed&#8221;.</p>
<p>Right now, I&#8217;m not getting it to work either way in that the NSLog operation takes off and never stops creating blank entries, so I figure I&#8217;m missing a line of code involving &#8220;naughtyWord&#8221;.  (I&#8217;m new to C).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean H</title>
		<link>http://www.icodeblog.com/2010/01/06/live-character-counter-for-a-uitextfield/#comment-3668</link>
		<dc:creator>Sean H</dc:creator>
		<pubDate>Tue, 23 Mar 2010 05:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1686#comment-3668</guid>
		<description>mucho helpful and very much appreciated.  thanks man!  now if i could only figure out how to get it to let me change the color of specific words...</description>
		<content:encoded><![CDATA[<p>mucho helpful and very much appreciated.  thanks man!  now if i could only figure out how to get it to let me change the color of specific words&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

