<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: Quick Spreadsheet to plist Technique	</title>
	<atom:link href="https://richardwarrender.com/2010/09/spreadsheet-to-plist/feed/" rel="self" type="application/rss+xml" />
	<link>https://richardwarrender.com/2010/09/spreadsheet-to-plist/</link>
	<description>Creative Thinking, Clear Engineering</description>
	<lastBuildDate>Wed, 24 May 2023 18:44:48 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.2.9</generator>
	<item>
		<title>
		By: Serkan		</title>
		<link>https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7635</link>

		<dc:creator><![CDATA[Serkan]]></dc:creator>
		<pubDate>Sun, 17 Aug 2014 17:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://richardwarrender.com/?p=187#comment-7635</guid>

					<description><![CDATA[i ve tried this, but i got this issue on xcode 5.1.1

Can you help me? Thanks]]></description>
			<content:encoded><![CDATA[<p>i ve tried this, but i got this issue on xcode 5.1.1</p>
<p>Can you help me? Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Richard Warrender		</title>
		<link>https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7459</link>

		<dc:creator><![CDATA[Richard Warrender]]></dc:creator>
		<pubDate>Thu, 11 Apr 2013 12:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://richardwarrender.com/?p=187#comment-7459</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7452&quot;&gt;Dean Davids&lt;/a&gt;.

The NextStep plist format specifies a dictionary in the format as

{
    &quot;key&quot; = &quot;value&quot;;
    &quot;key&quot; = &quot;value&quot;;
}

So you might want to change the middle line to iterate over each column as follows

echo &quot;\t\&quot;&quot;;
echo &quot;{\n&quot;;
foreach($data as $key =&#062; $value) {
   echo &quot;\t\&quot;&quot; . $key . &quot;\&quot; = &quot;\&quot; . $value . &quot;\&quot;;\n&quot;
}
echo &quot;}\n&quot;;
echo &quot;\&quot;,\n&quot;;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7452">Dean Davids</a>.</p>
<p>The NextStep plist format specifies a dictionary in the format as</p>
<p>{<br />
    &#8220;key&#8221; = &#8220;value&#8221;;<br />
    &#8220;key&#8221; = &#8220;value&#8221;;<br />
}</p>
<p>So you might want to change the middle line to iterate over each column as follows</p>
<p>echo &#8220;\t\&#8221;&#8221;;<br />
echo &#8220;{\n&#8221;;<br />
foreach($data as $key =&gt; $value) {<br />
   echo &#8220;\t\&#8221;&#8221; . $key . &#8220;\&#8221; = &#8220;\&#8221; . $value . &#8220;\&#8221;;\n&#8221;<br />
}<br />
echo &#8220;}\n&#8221;;<br />
echo &#8220;\&#8221;,\n&#8221;;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Richard Warrender		</title>
		<link>https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7458</link>

		<dc:creator><![CDATA[Richard Warrender]]></dc:creator>
		<pubDate>Thu, 11 Apr 2013 11:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://richardwarrender.com/?p=187#comment-7458</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7032&quot;&gt;Chris&lt;/a&gt;.

Your file system might be case-dependant. Perhaps try making sure the file&#039;s name is lower-case as well as the string in the PHP file.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7032">Chris</a>.</p>
<p>Your file system might be case-dependant. Perhaps try making sure the file&#8217;s name is lower-case as well as the string in the PHP file.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dean Davids		</title>
		<link>https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7452</link>

		<dc:creator><![CDATA[Dean Davids]]></dc:creator>
		<pubDate>Thu, 04 Apr 2013 14:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://richardwarrender.com/?p=187#comment-7452</guid>

					<description><![CDATA[This works for me, to the extent that it creates a list of strings, but it does not seem to assign more than the first field. I get an array of all the strings in the first column. Can this be used to get all the columns into dictionaries, each row being a single dictionary?]]></description>
			<content:encoded><![CDATA[<p>This works for me, to the extent that it creates a list of strings, but it does not seem to assign more than the first field. I get an array of all the strings in the first column. Can this be used to get all the columns into dictionaries, each row being a single dictionary?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chris		</title>
		<link>https://richardwarrender.com/2010/09/spreadsheet-to-plist/#comment-7032</link>

		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Sun, 05 Aug 2012 19:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://richardwarrender.com/?p=187#comment-7032</guid>

					<description><![CDATA[Great demo, but I just get back a NULL length .plist.  Any thoughts why?  Thanks CPL]]></description>
			<content:encoded><![CDATA[<p>Great demo, but I just get back a NULL length .plist.  Any thoughts why?  Thanks CPL</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk
Database Caching using Memcached

Served from: richardwarrender.com @ 2026-05-02 05:59:25 by W3 Total Cache
-->