<?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: Customising a table view with mySettings</title>
	<atom:link href="http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/</link>
	<description>iPhone development</description>
	<lastBuildDate>Mon, 19 Jul 2010 19:26:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mbt shoes</title>
		<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/comment-page-1/#comment-1159</link>
		<dc:creator>mbt shoes</dc:creator>
		<pubDate>Thu, 06 May 2010 06:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nottoobadsoftware.com/?p=61#comment-1159</guid>
		<description>nice share, good article, very usefull for me...thanks</description>
		<content:encoded><![CDATA[<p>nice share, good article, very usefull for me&#8230;thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kare</title>
		<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/comment-page-1/#comment-485</link>
		<dc:creator>Kare</dc:creator>
		<pubDate>Tue, 27 Oct 2009 18:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nottoobadsoftware.com/?p=61#comment-485</guid>
		<description>I don&#039;t know, maybe you could do it with a custom cell, a subclass of one of the standard cells? Or if all the settings in the page are from the keychain you could try using the keychain as the settings object.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know, maybe you could do it with a custom cell, a subclass of one of the standard cells? Or if all the settings in the page are from the keychain you could try using the keychain as the settings object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/comment-page-1/#comment-484</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Tue, 27 Oct 2009 18:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nottoobadsoftware.com/?p=61#comment-484</guid>
		<description>Is it possible to use mysettings to also allow the user to edit settings stored in they keychain (not in the plist). I would imagine this would be performed with custom actions on some elements?</description>
		<content:encoded><![CDATA[<p>Is it possible to use mysettings to also allow the user to edit settings stored in they keychain (not in the plist). I would imagine this would be performed with custom actions on some elements?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kare</title>
		<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/comment-page-1/#comment-473</link>
		<dc:creator>Kare</dc:creator>
		<pubDate>Sat, 10 Oct 2009 23:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nottoobadsoftware.com/?p=61#comment-473</guid>
		<description>If you&#039;re adding custom cells or behaviour it is probably easier to create your own view controller. You can always use SettingsViewController as a starting point. The SettingsViewController creates its own SettingsMetadataSource, so in the code above you end up with two SettingsMetadataSource objects that have no impact on each other.</description>
		<content:encoded><![CDATA[<p>If you&#8217;re adding custom cells or behaviour it is probably easier to create your own view controller. You can always use SettingsViewController as a starting point. The SettingsViewController creates its own SettingsMetadataSource, so in the code above you end up with two SettingsMetadataSource objects that have no impact on each other.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/comment-page-1/#comment-472</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 10 Oct 2009 00:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nottoobadsoftware.com/?p=61#comment-472</guid>
		<description>I have been able to bring up the settings and create a custom cell, but, but I don&#039;t understand where to set the delegate so that the framework sends it a customCellWasSelectedAtIndexPath: message. My feeble attempt went something like this:

NSString *plist = [[NSBundle mainBundle] pathForResource:@&quot;Settings&quot; ofType:@&quot;plist&quot;];

SettingsViewController *controller = [[SettingsViewController alloc] initWithConfigFile:plist];

SettingsMetadataSource *mdSource = [[SettingsMetadataSource alloc] initWithConfigFile:plist andSettings:controller.settings];

mdSource.delegate = self;

[self.navigationController setViewControllers:[NSArray arrayWithObject:controller] animated:NO];
	[controller release];</description>
		<content:encoded><![CDATA[<p>I have been able to bring up the settings and create a custom cell, but, but I don&#8217;t understand where to set the delegate so that the framework sends it a customCellWasSelectedAtIndexPath: message. My feeble attempt went something like this:</p>
<p>NSString *plist = [[NSBundle mainBundle] pathForResource:@&#8221;Settings&#8221; ofType:@&#8221;plist&#8221;];</p>
<p>SettingsViewController *controller = [[SettingsViewController alloc] initWithConfigFile:plist];</p>
<p>SettingsMetadataSource *mdSource = [[SettingsMetadataSource alloc] initWithConfigFile:plist andSettings:controller.settings];</p>
<p>mdSource.delegate = self;</p>
<p>[self.navigationController setViewControllers:[NSArray arrayWithObject:controller] animated:NO];<br />
	[controller release];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kare</title>
		<link>http://blog.nottoobadsoftware.com/2009/05/customising-a-table-view-with-mysettings/comment-page-1/#comment-444</link>
		<dc:creator>Kare</dc:creator>
		<pubDate>Thu, 06 Aug 2009 16:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nottoobadsoftware.com/?p=61#comment-444</guid>
		<description>The ability to add remove and reorder cells has been added to mySettings. Customising the reorder control is still unsolved though, I guess I just have to live with it.</description>
		<content:encoded><![CDATA[<p>The ability to add remove and reorder cells has been added to mySettings. Customising the reorder control is still unsolved though, I guess I just have to live with it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
