<?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: Managing Local High Scores and Online Leaderboard for your iPhone Games Part 1/2</title>
	<atom:link href="http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/feed" rel="self" type="application/rss+xml" />
	<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1</link>
	<description>There is neither speech nor language but their voice is heard among them</description>
	<lastBuildDate>Thu, 03 Dec 2009 18:36:54 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alec</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-820</link>
		<dc:creator>Alec</dc:creator>
		<pubDate>Thu, 05 Nov 2009 03:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-820</guid>
		<description>Travis,

I tried getting it to load into the table view and had nothing load but the &quot;-&quot; that would load if scores weren&#039;t there. I look at the HighScoresFile and scores and names are there. Just won&#039;t load in the table view. Can you help?

http://itouchr.googlepages.com/Code.png
http://itouchr.googlepages.com/HighScoresFile.png

Thanks.</description>
		<content:encoded><![CDATA[<p>Travis,</p>
<p>I tried getting it to load into the table view and had nothing load but the &#8220;-&#8221; that would load if scores weren&#8217;t there. I look at the HighScoresFile and scores and names are there. Just won&#8217;t load in the table view. Can you help?</p>
<p><a href="http://itouchr.googlepages.com/Code.png" rel="nofollow">http://itouchr.googlepages.com/Code.png</a><br />
<a href="http://itouchr.googlepages.com/HighScoresFile.png" rel="nofollow">http://itouchr.googlepages.com/HighScoresFile.png</a></p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-819</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 05 Nov 2009 01:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-819</guid>
		<description>And I wish there was sample source code to understand it better.</description>
		<content:encoded><![CDATA[<p>And I wish there was sample source code to understand it better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-818</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 05 Nov 2009 01:13:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-818</guid>
		<description>it gives me this error: 
Terminating app due to uncaught exception &#039;NSInternalInconsistencyException&#039;, reason: &#039;UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:&#039;</description>
		<content:encoded><![CDATA[<p>it gives me this error:<br />
Terminating app due to uncaught exception &#8216;NSInternalInconsistencyException&#8217;, reason: &#8216;UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-396</link>
		<dc:creator>Travis</dc:creator>
		<pubDate>Tue, 13 Oct 2009 19:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-396</guid>
		<description>Apologies for omitting the HighScoreCell classes. It&#039;s just there as a placeholder in case you wanted to do any fancy effects with the xib.

* * *

@interface HighScoreCell : UITableViewCell {
	IBOutlet UILabel *rankLabel;
	IBOutlet UILabel *nameLabel;
	IBOutlet UILabel *scoreLabel;
	IBOutlet UILabel *dateLabel;
}

@property (nonatomic, retain) UILabel *rankLabel;
@property (nonatomic, retain) UILabel *nameLabel;
@property (nonatomic, retain) UILabel *scoreLabel;
@property (nonatomic, retain) UILabel *dateLabel;

@end

* * *


#import &quot;HighScoreCell.h&quot;


@implementation HighScoreCell

@synthesize rankLabel;
@synthesize nameLabel;
@synthesize scoreLabel;
@synthesize dateLabel;

- (void)dealloc {
	[rankLabel release];
	[nameLabel release];
	[scoreLabel release];
	[dateLabel release];
	
    [super dealloc];
}


@end</description>
		<content:encoded><![CDATA[<p>Apologies for omitting the HighScoreCell classes. It&#8217;s just there as a placeholder in case you wanted to do any fancy effects with the xib.</p>
<p>* * *</p>
<p>@interface HighScoreCell : UITableViewCell {<br />
	IBOutlet UILabel *rankLabel;<br />
	IBOutlet UILabel *nameLabel;<br />
	IBOutlet UILabel *scoreLabel;<br />
	IBOutlet UILabel *dateLabel;<br />
}</p>
<p>@property (nonatomic, retain) UILabel *rankLabel;<br />
@property (nonatomic, retain) UILabel *nameLabel;<br />
@property (nonatomic, retain) UILabel *scoreLabel;<br />
@property (nonatomic, retain) UILabel *dateLabel;</p>
<p>@end</p>
<p>* * *</p>
<p>#import &#8220;HighScoreCell.h&#8221;</p>
<p>@implementation HighScoreCell</p>
<p>@synthesize rankLabel;<br />
@synthesize nameLabel;<br />
@synthesize scoreLabel;<br />
@synthesize dateLabel;</p>
<p>- (void)dealloc {<br />
	[rankLabel release];<br />
	[nameLabel release];<br />
	[scoreLabel release];<br />
	[dateLabel release];</p>
<p>    [super dealloc];<br />
}</p>
<p>@end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nexus6</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-368</link>
		<dc:creator>nexus6</dc:creator>
		<pubDate>Sun, 11 Oct 2009 21:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-368</guid>
		<description>Hi Travis,

Is there someplace to download the source for this tutorial? Also
as noted above there seems to be a file missing.

HighScoreCell.h

Thanks.

PS:
Great Tutorial</description>
		<content:encoded><![CDATA[<p>Hi Travis,</p>
<p>Is there someplace to download the source for this tutorial? Also<br />
as noted above there seems to be a file missing.</p>
<p>HighScoreCell.h</p>
<p>Thanks.</p>
<p>PS:<br />
Great Tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Osiris</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-111</link>
		<dc:creator>Osiris</dc:creator>
		<pubDate>Thu, 17 Sep 2009 16:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-111</guid>
		<description>Is there something missing the &quot;#import &quot;HighScoreCell.h&quot;??

Also, once added to our project, how do we call this set of functions?</description>
		<content:encoded><![CDATA[<p>Is there something missing the &#8220;#import &#8220;HighScoreCell.h&#8221;??</p>
<p>Also, once added to our project, how do we call this set of functions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Managing Local High Scores and Online Leaderboard for your iPhone Games Part 2/2 &#124; Travis Dunn</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-80</link>
		<dc:creator>Managing Local High Scores and Online Leaderboard for your iPhone Games Part 2/2 &#124; Travis Dunn</dc:creator>
		<pubDate>Sat, 12 Sep 2009 08:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-80</guid>
		<description>[...] the first part this tutorial I demonstrated how to save player scores for an iPhone game. In this post, I’ll explain how to [...]</description>
		<content:encoded><![CDATA[<p>[...] the first part this tutorial I demonstrated how to save player scores for an iPhone game. In this post, I’ll explain how to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chief</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-78</link>
		<dc:creator>chief</dc:creator>
		<pubDate>Fri, 11 Sep 2009 22:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-78</guid>
		<description>This is great - gave me some ideas about how to do this with a game we&#039;re developing. Looking forward to more - specifically I&#039;m interested in &quot;best practice&quot; with encryption and the App Store. Thanks again!</description>
		<content:encoded><![CDATA[<p>This is great &#8211; gave me some ideas about how to do this with a game we&#8217;re developing. Looking forward to more &#8211; specifically I&#8217;m interested in &#8220;best practice&#8221; with encryption and the App Store. Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-76</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Fri, 11 Sep 2009 00:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-76</guid>
		<description>Great article! This was just the ideas I was looking for. Thanks.</description>
		<content:encoded><![CDATA[<p>Great article! This was just the ideas I was looking for. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Managing Local High Scores and Online Leaderboard for your iPhone &#8230; &#124; myiphones.co.cc</title>
		<link>http://www.travisdunn.com/managing-local-high-scores-and-online-leaderboard-for-your-iphone-games-part-1/comment-page-1#comment-72</link>
		<dc:creator>Managing Local High Scores and Online Leaderboard for your iPhone &#8230; &#124; myiphones.co.cc</dc:creator>
		<pubDate>Mon, 07 Sep 2009 13:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.travisdunn.com/?p=563#comment-72</guid>
		<description>[...] rest is here:  Managing Local High Scores and Online Leaderboard for your iPhone &#8230;  iPhone Games analysis ave-imperator creativity data development game game-development history [...]</description>
		<content:encoded><![CDATA[<p>[...] rest is here:  Managing Local High Scores and Online Leaderboard for your iPhone &#8230;  iPhone Games analysis ave-imperator creativity data development game game-development history [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
