<?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: Custom UITableViewCell</title>
	<atom:link href="http://zcentric.com/2008/08/05/custom-uitableviewcell/feed/" rel="self" type="application/rss+xml" />
	<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/</link>
	<description>A blog about linux, programming and more</description>
	<lastBuildDate>Sat, 11 Feb 2012 01:42:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Herbert Altink</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-1978</link>
		<dc:creator>Herbert Altink</dc:creator>
		<pubDate>Wed, 21 Dec 2011 20:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-1978</guid>
		<description>Good tutorial!

Here is another interesting tutorial! http://www.altinkonline.nl/tutorials/xcode/uitableview/uitableviewcell/</description>
		<content:encoded><![CDATA[<p>Good tutorial!</p>
<p>Here is another interesting tutorial! <a href="http://www.altinkonline.nl/tutorials/xcode/uitableview/uitableviewcell/" rel="nofollow">http://www.altinkonline.nl/tutorials/xcode/uitableview/uitableviewcell/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Goldberg</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-967</link>
		<dc:creator>Eric Goldberg</dc:creator>
		<pubDate>Thu, 28 Jul 2011 21:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-967</guid>
		<description>Just as a heads-up, your UILabel constructor method will leak memory as implemented. You should return an autoreleased UILabel. Or, on the caller side, set the instance property in a way that doesn&#039;t add a retain. However, doing the autorelease way is cleaner and more the &quot;Apple Way&quot; since you&#039;re supposed to balance any init / copy calls with a release / autorelease in the same method.

Cheers,
Eric</description>
		<content:encoded><![CDATA[<p>Just as a heads-up, your UILabel constructor method will leak memory as implemented. You should return an autoreleased UILabel. Or, on the caller side, set the instance property in a way that doesn&#8217;t add a retain. However, doing the autorelease way is cleaner and more the &#8220;Apple Way&#8221; since you&#8217;re supposed to balance any init / copy calls with a release / autorelease in the same method.</p>
<p>Cheers,<br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mum</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-966</link>
		<dc:creator>mum</dc:creator>
		<pubDate>Wed, 13 Jul 2011 07:57:02 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-966</guid>
		<description>since u are taking label text from xml,if i have multiple section for each setion i need different label text like...

section 1

Animal
Dog

section 2
Flowers
Rose

how can i declare differnt uitableviewcell for differntlabel</description>
		<content:encoded><![CDATA[<p>since u are taking label text from xml,if i have multiple section for each setion i need different label text like&#8230;</p>
<p>section 1</p>
<p>Animal<br />
Dog</p>
<p>section 2<br />
Flowers<br />
Rose</p>
<p>how can i declare differnt uitableviewcell for differntlabel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mum</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-965</link>
		<dc:creator>mum</dc:creator>
		<pubDate>Wed, 13 Jul 2011 07:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-965</guid>
		<description>thanks</description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raed</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-964</link>
		<dc:creator>Raed</dc:creator>
		<pubDate>Wed, 29 Jun 2011 08:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-964</guid>
		<description>When I trying to run the source code I got this error !!

 Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1</description>
		<content:encoded><![CDATA[<p>When I trying to run the source code I got this error !!</p>
<p> Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rolling your own iPhone treeview control Part 3: Creating a treeview-ready UITableViewCell &#171; .NET @ Kape ni LaTtEX</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-963</link>
		<dc:creator>Rolling your own iPhone treeview control Part 3: Creating a treeview-ready UITableViewCell &#171; .NET @ Kape ni LaTtEX</dc:creator>
		<pubDate>Thu, 21 Apr 2011 02:39:29 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-963</guid>
		<description>[...] What this method does is create the label and image required for the cell, adding it to the contentView object of the UITableViewCell parent class. You can read more about subclassing UITableViewCells here. [...] </description>
		<content:encoded><![CDATA[<p>[...] What this method does is create the label and image required for the cell, adding it to the contentView object of the UITableViewCell parent class. You can read more about subclassing UITableViewCells here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: podarki</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-962</link>
		<dc:creator>podarki</dc:creator>
		<pubDate>Sun, 23 Aug 2009 07:43:17 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-962</guid>
		<description>Вообще, на мой взгляд, самое лучшее в личном блоге, так это самопознание.</description>
		<content:encoded><![CDATA[<p>Вообще, на мой взгляд, самое лучшее в личном блоге, так это самопознание.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MeggoSexxx</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-961</link>
		<dc:creator>MeggoSexxx</dc:creator>
		<pubDate>Sun, 12 Jul 2009 19:33:27 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-961</guid>
		<description>vrotmnenogi</description>
		<content:encoded><![CDATA[<p>vrotmnenogi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dineshkumarm12</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-960</link>
		<dc:creator>dineshkumarm12</dc:creator>
		<pubDate>Sat, 30 May 2009 07:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-960</guid>
		<description>I want to have a two cell in a row,as in contacts we have “Text message” and “Add to favourites” in a single row how to do that….
Is that Splitting a cell into two?

can anyone help me?</description>
		<content:encoded><![CDATA[<p>I want to have a two cell in a row,as in contacts we have “Text message” and “Add to favourites” in a single row how to do that….<br />
Is that Splitting a cell into two?</p>
<p>can anyone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Custom UITableViewCell : Iphone Noob &#171; RadiantPhone Devlog</title>
		<link>http://zcentric.com/2008/08/05/custom-uitableviewcell/comment-page-1/#comment-959</link>
		<dc:creator>Custom UITableViewCell : Iphone Noob &#171; RadiantPhone Devlog</dc:creator>
		<pubDate>Thu, 14 May 2009 20:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://iphone.zcentric.com/?p=121#comment-959</guid>
		<description>[...] Custom UITableViewCell : Iphone Noob. [...] </description>
		<content:encoded><![CDATA[<p>[...] Custom UITableViewCell : Iphone Noob. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

