<?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: Customizing the background/border colors of a UITableView (grouped style)</title>
	<atom:link href="http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/feed/" rel="self" type="application/rss+xml" />
	<link>http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/</link>
	<description></description>
	<lastBuildDate>Fri, 21 Aug 2009 01:49:42 -0300</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mark S</title>
		<link>http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/comment-page-1/#comment-51586</link>
		<dc:creator>Mark S</dc:creator>
		<pubDate>Wed, 05 Aug 2009 21:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://pessoal.org/blog/?p=149#comment-51586</guid>
		<description>Thanks for the great method!
As you do [[CustomCellBackgroundView alloc] initWithFrame:CGRectZero];
Isn&#039;t there a need for release somewhere?
Or is it save to add to autorelease pool?
Please correct if any of it true or false.

Thanks again</description>
		<content:encoded><![CDATA[<p>Thanks for the great method!<br />
As you do [[CustomCellBackgroundView alloc] initWithFrame:CGRectZero];<br />
Isn&#8217;t there a need for release somewhere?<br />
Or is it save to add to autorelease pool?<br />
Please correct if any of it true or false.</p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/comment-page-1/#comment-51054</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Tue, 28 Jul 2009 12:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://pessoal.org/blog/?p=149#comment-51054</guid>
		<description>You can easily change the border colors of the uitableview by using this:

	[theTable setSeparatorColor:[UIColor blackColor]];</description>
		<content:encoded><![CDATA[<p>You can easily change the border colors of the uitableview by using this:</p>
<p>	[theTable setSeparatorColor:[UIColor blackColor]];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: veddermatic</title>
		<link>http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/comment-page-1/#comment-50761</link>
		<dc:creator>veddermatic</dc:creator>
		<pubDate>Thu, 16 Jul 2009 18:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://pessoal.org/blog/?p=149#comment-50761</guid>
		<description>Thanks for the code, really helpful stuff. Quick question though... if i reload the table data, I get a second set of labels. What&#039;s the best way to avoid that?</description>
		<content:encoded><![CDATA[<p>Thanks for the code, really helpful stuff. Quick question though&#8230; if i reload the table data, I get a second set of labels. What&#8217;s the best way to avoid that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiropole</title>
		<link>http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/comment-page-1/#comment-50561</link>
		<dc:creator>Jiropole</dc:creator>
		<pubDate>Mon, 06 Jul 2009 21:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://pessoal.org/blog/?p=149#comment-50561</guid>
		<description>Apologies for the noise, but I figured out a way to clean up custom subviews using the UIView.tag property.  No great revelation to you experienced programmers I&#039;m sure :)  I set the tag for any custom views to some arbitrary value, then every time I get a dequeued cell, I first remove any subviews having this tag.</description>
		<content:encoded><![CDATA[<p>Apologies for the noise, but I figured out a way to clean up custom subviews using the UIView.tag property.  No great revelation to you experienced programmers I&#8217;m sure :)  I set the tag for any custom views to some arbitrary value, then every time I get a dequeued cell, I first remove any subviews having this tag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiropole</title>
		<link>http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/comment-page-1/#comment-50560</link>
		<dc:creator>Jiropole</dc:creator>
		<pubDate>Mon, 06 Jul 2009 20:57:23 +0000</pubDate>
		<guid isPermaLink="false">http://pessoal.org/blog/?p=149#comment-50560</guid>
		<description>Ditto on the thanks - this saved me a bunch of time as well.  I tweaked the rounded-corner drawing code so it can draw single-pixel width cells centered on the pixel vs leaking over two pixels.  

One issue that&#039;s come up for me is that when used with dequeueReusableCellWithIdentifier:, I may get a cell to which I&#039;ve already added these custom subviews.  I&#039;m not sure how to strip these views back out or identify them, when a cell reuse occurs.  As it is, these subviews build up and create a visual mess!  I&#039;m not too adept at using UIViews yet, does anyone know a simple way to find/remove these custom subviews in a cell reuse situation?  Cheers!</description>
		<content:encoded><![CDATA[<p>Ditto on the thanks &#8211; this saved me a bunch of time as well.  I tweaked the rounded-corner drawing code so it can draw single-pixel width cells centered on the pixel vs leaking over two pixels.  </p>
<p>One issue that&#8217;s come up for me is that when used with dequeueReusableCellWithIdentifier:, I may get a cell to which I&#8217;ve already added these custom subviews.  I&#8217;m not sure how to strip these views back out or identify them, when a cell reuse occurs.  As it is, these subviews build up and create a visual mess!  I&#8217;m not too adept at using UIViews yet, does anyone know a simple way to find/remove these custom subviews in a cell reuse situation?  Cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
