<?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: Creating Unique Looking Tables with Custom Cells</title>
	<atom:link href="http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html/feed" rel="self" type="application/rss+xml" />
	<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html</link>
	<description>iOS and Objective-C Tips, Tricks and Tutorials.</description>
	<lastBuildDate>Tue, 22 May 2012 11:53:47 -0500</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: John Muchow</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-66750</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Sat, 04 Feb 2012 15:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-66750</guid>
		<description>You can change the alpha value of an image, which will tweak the level of transparency</description>
		<content:encoded><![CDATA[<p>You can change the alpha value of an image, which will tweak the level of transparency</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-66741</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sat, 04 Feb 2012 12:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-66741</guid>
		<description>Hi,

How can you achieve the glass like look and feel?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can you achieve the glass like look and feel?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam C</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-62882</link>
		<dc:creator>Sam C</dc:creator>
		<pubDate>Thu, 17 Nov 2011 11:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-62882</guid>
		<description>Nice one your time is much appreciated buddy :)</description>
		<content:encoded><![CDATA[<p>Nice one your time is much appreciated buddy :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pramod</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-5562</link>
		<dc:creator>Pramod</dc:creator>
		<pubDate>Thu, 08 Oct 2009 13:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-5562</guid>
		<description>Hi,

I would like to know how it can be achieved if the images and content of table view cell is to be downloaded over the air and refreshed for every specific time.

Any info would be appreciable.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I would like to know how it can be achieved if the images and content of table view cell is to be downloaded over the air and refreshed for every specific time.</p>
<p>Any info would be appreciable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deadly Octopus</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-5537</link>
		<dc:creator>Deadly Octopus</dc:creator>
		<pubDate>Wed, 07 Oct 2009 10:26:39 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-5537</guid>
		<description>I am, of course, a complete doofus. Needless to say that a brief espresso break followed with a nice glass of white illuminated my beginner&#039;s stupidity. My mistake was thus:

I was doing this in my app delegate:

m_pMainViewController = [[RootViewController alloc] init];

As opposed to this:

m_pMainViewController = [[UINavigationController alloc] initWithRootViewController:[[RootViewController alloc] init]];

... and then everything started working nicely. Which is nice! As for your other comments; I&#039;m glad it&#039;s not just me. I tried the Interface Builder a little but it seemed to detach me from what was going on in the code and more often than not, I dragged one thing to where it shouldn&#039;t be, etc. The problem that I am having is that many of the books and web sites are focused on doing this stuff with IB so it&#039;s a slow haul whilst I figure out basic errors like the above.

Thanks again for your article, btw., it was more than helpful: I&#039;m finally beginning to understand how all this stuff fits together. If I can just stop typing std::vector, -&gt; and virtual ~ViewController() all the time and actually fall into Objective C, I&#039;m laughing. :-)</description>
		<content:encoded><![CDATA[<p>I am, of course, a complete doofus. Needless to say that a brief espresso break followed with a nice glass of white illuminated my beginner&#8217;s stupidity. My mistake was thus:</p>
<p>I was doing this in my app delegate:</p>
<p>m_pMainViewController = [[RootViewController alloc] init];</p>
<p>As opposed to this:</p>
<p>m_pMainViewController = [[UINavigationController alloc] initWithRootViewController:[[RootViewController alloc] init]];</p>
<p>&#8230; and then everything started working nicely. Which is nice! As for your other comments; I&#8217;m glad it&#8217;s not just me. I tried the Interface Builder a little but it seemed to detach me from what was going on in the code and more often than not, I dragged one thing to where it shouldn&#8217;t be, etc. The problem that I am having is that many of the books and web sites are focused on doing this stuff with IB so it&#8217;s a slow haul whilst I figure out basic errors like the above.</p>
<p>Thanks again for your article, btw., it was more than helpful: I&#8217;m finally beginning to understand how all this stuff fits together. If I can just stop typing std::vector, -&gt; and virtual ~ViewController() all the time and actually fall into Objective C, I&#8217;m laughing. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-5526</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Tue, 06 Oct 2009 22:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-5526</guid>
		<description>Well first, glad to hear from are working without IB, as I personally find that the best means to learn how things work (I&#039;m not much for black boxes). After a year, I&#039;m still flying solo without IB as I&#039;ve become accustomed to doing everything from the ground up. With that said, I&#039;m sure if I took the time to learn IB, I would find great value in the tool for certain aspects of development.

As far as viewLoaded not being called, are the classes inherited from UIViewController?</description>
		<content:encoded><![CDATA[<p>Well first, glad to hear from are working without IB, as I personally find that the best means to learn how things work (I&#8217;m not much for black boxes). After a year, I&#8217;m still flying solo without IB as I&#8217;ve become accustomed to doing everything from the ground up. With that said, I&#8217;m sure if I took the time to learn IB, I would find great value in the tool for certain aspects of development.</p>
<p>As far as viewLoaded not being called, are the classes inherited from UIViewController?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deadly Octopus</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-5514</link>
		<dc:creator>Deadly Octopus</dc:creator>
		<pubDate>Tue, 06 Oct 2009 15:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-5514</guid>
		<description>Fantastic: thanks very much for that code. I&#039;m a Win32/C++ programmer trying to figure all this stuff out for the first time and I got lost in UITableViewControllers that don&#039;t allow for background images. 

I&#039;m also trying to do stuff without the InterfaceBuilder (learning how everything plugs together in code and all that). The only catch I ended up with after my modifications is that my table cell clicked on code does fire, but the view I&#039;m pushing on doesn&#039;t appear any longer. I then discovered that none of the viewLoaded() events are getting fired any longer in my root view controller. I guess I did too much at once: removed all the NIB files and added this :) The table&#039;s great, by the way, just that I&#039;ve lost the firing of all the view controller overloaded functions. Any clues as to what schoolboy error I&#039;m making? I&#039;m sure it&#039;s trivial.</description>
		<content:encoded><![CDATA[<p>Fantastic: thanks very much for that code. I&#8217;m a Win32/C++ programmer trying to figure all this stuff out for the first time and I got lost in UITableViewControllers that don&#8217;t allow for background images. </p>
<p>I&#8217;m also trying to do stuff without the InterfaceBuilder (learning how everything plugs together in code and all that). The only catch I ended up with after my modifications is that my table cell clicked on code does fire, but the view I&#8217;m pushing on doesn&#8217;t appear any longer. I then discovered that none of the viewLoaded() events are getting fired any longer in my root view controller. I guess I did too much at once: removed all the NIB files and added this :) The table&#8217;s great, by the way, just that I&#8217;ve lost the firing of all the view controller overloaded functions. Any clues as to what schoolboy error I&#8217;m making? I&#8217;m sure it&#8217;s trivial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-5512</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Tue, 06 Oct 2009 13:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-5512</guid>
		<description>I&#039;ve found that with caching of the table cells, this can be a problem. I updated the code above and the Xcode project to remove the cell caching (in &lt;strong&gt;cellForRowAtIndexPath&lt;/strong&gt; method) and it appears to work fine.

Honestly, I&#039;m not sure if that&#039;s a bug in the implementation or a side-effect that one has to deal with when using custom cells.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found that with caching of the table cells, this can be a problem. I updated the code above and the Xcode project to remove the cell caching (in <strong>cellForRowAtIndexPath</strong> method) and it appears to work fine.</p>
<p>Honestly, I&#8217;m not sure if that&#8217;s a bug in the implementation or a side-effect that one has to deal with when using custom cells.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bitfool</title>
		<link>http://MobileDeveloperTips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html#comment-5511</link>
		<dc:creator>Bitfool</dc:creator>
		<pubDate>Tue, 06 Oct 2009 13:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=4067#comment-5511</guid>
		<description>Hi, I love the technique... but I have a problem.  I downloaded your source, built in 3.0 for simulator and device, and when it first loads it works fine, all the cells are selectable (they darken when selected).  But immediately after scrolling to the bottom (row 8) and back up to the top, I can no longer select rows 1, 2, or 7, 8.  All the others are selectable, and clicking 1,2,7,8 will deselect the selected one, but no longer do these rows highlight (darken).  Bug, or a non-intuitive feature?  I&#039;ll start looking at the code next to see if I&#039;m missing something. -Bitfool</description>
		<content:encoded><![CDATA[<p>Hi, I love the technique&#8230; but I have a problem.  I downloaded your source, built in 3.0 for simulator and device, and when it first loads it works fine, all the cells are selectable (they darken when selected).  But immediately after scrolling to the bottom (row 8) and back up to the top, I can no longer select rows 1, 2, or 7, 8.  All the others are selectable, and clicking 1,2,7,8 will deselect the selected one, but no longer do these rows highlight (darken).  Bug, or a non-intuitive feature?  I&#8217;ll start looking at the code next to see if I&#8217;m missing something. -Bitfool</p>
]]></content:encoded>
	</item>
</channel>
</rss>

