<?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: iPhone JSON Flickr Tutorial &#8211; Part 1</title>
	<atom:link href="http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html/feed" rel="self" type="application/rss+xml" />
	<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html</link>
	<description>iOS Developer Tips, Tricks and Tutorials.</description>
	<lastBuildDate>Wed, 08 Feb 2012 06:31:16 -0600</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: John Muchow</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-59161</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Mon, 29 Aug 2011 21:42:11 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-59161</guid>
		<description>When using Xcode, you will always need to check the build set in the project with the version(s) you have installed. In other words, the project was created some time ago, with an older SDK. Chances are you are using a much new SDK, so you will need to change that in the build settings to match you SDK version.</description>
		<content:encoded><![CDATA[<p>When using Xcode, you will always need to check the build set in the project with the version(s) you have installed. In other words, the project was created some time ago, with an older SDK. Chances are you are using a much new SDK, so you will need to change that in the build settings to match you SDK version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-59145</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 29 Aug 2011 19:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-59145</guid>
		<description>Hi John this tutorial is great! I downloaded the source files, and see that (for me at least) the following are missing: 
under Products folder: JSONFlickr.app 
under Frameworks folder: Foundation.framework , CoreGraphics.framework, and UIKit.framework

It also show &quot;Base SDK Missing&quot; in the  Xcode dropdown top left.

I&#039;m new to Xcode and may be overlooking something.

Thx!</description>
		<content:encoded><![CDATA[<p>Hi John this tutorial is great! I downloaded the source files, and see that (for me at least) the following are missing:<br />
under Products folder: JSONFlickr.app<br />
under Frameworks folder: Foundation.framework , CoreGraphics.framework, and UIKit.framework</p>
<p>It also show &#8220;Base SDK Missing&#8221; in the  Xcode dropdown top left.</p>
<p>I&#8217;m new to Xcode and may be overlooking something.</p>
<p>Thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-56034</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Tue, 19 Jul 2011 12:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-56034</guid>
		<description>Here is a post that discusses &lt;a href=&quot;http://iphonedevelopertips.com/objective-c/initializers.html&quot; rel=&quot;nofollow&quot;&gt; initialization&lt;/a&gt;, it may provide some insight.</description>
		<content:encoded><![CDATA[<p>Here is a post that discusses <a href="http://iphonedevelopertips.com/objective-c/initializers.html" rel="nofollow"> initialization</a>, it may provide some insight.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajat Agarwal</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-56029</link>
		<dc:creator>Rajat Agarwal</dc:creator>
		<pubDate>Tue, 19 Jul 2011 11:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-56029</guid>
		<description>Hi, first off, great tutorial!! I must say I am new to iOS development so please bear with me:)

I do not really understand the function of the -(id)init method. I mean, could you not initialize the arrays in the viewWillLoad method? And whats the need to alloc memory for the view? And after that you call the [self searchFlickrPhotos:@&quot;iPhone&quot;]; function. Why do you do so? The user didn&#039;t want to do so or am I missing something?</description>
		<content:encoded><![CDATA[<p>Hi, first off, great tutorial!! I must say I am new to iOS development so please bear with me:)</p>
<p>I do not really understand the function of the -(id)init method. I mean, could you not initialize the arrays in the viewWillLoad method? And whats the need to alloc memory for the view? And after that you call the [self searchFlickrPhotos:@"iPhone"]; function. Why do you do so? The user didn&#8217;t want to do so or am I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-55707</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Fri, 15 Jul 2011 03:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-55707</guid>
		<description>Yes, there are probably a number of ways to extend the code and make things more robust if you were to use this within a more complete project. Often times I write short examples with the primary intention to demonstrate a concept and keep things simple...</description>
		<content:encoded><![CDATA[<p>Yes, there are probably a number of ways to extend the code and make things more robust if you were to use this within a more complete project. Often times I write short examples with the primary intention to demonstrate a concept and keep things simple&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johanisma</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-55677</link>
		<dc:creator>Johanisma</dc:creator>
		<pubDate>Thu, 14 Jul 2011 14:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-55677</guid>
		<description>Hey John,

Thanks for the tutorial !

Just one suggestion : wouldn&#039;t it be nicer to create a Photo class with attributes title, smallImageData and largeImageUrl and then having an NSMutableArray of those instead of storing everything in three separate NSMutableArrays ?</description>
		<content:encoded><![CDATA[<p>Hey John,</p>
<p>Thanks for the tutorial !</p>
<p>Just one suggestion : wouldn&#8217;t it be nicer to create a Photo class with attributes title, smallImageData and largeImageUrl and then having an NSMutableArray of those instead of storing everything in three separate NSMutableArrays ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-47798</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Wed, 27 Apr 2011 20:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-47798</guid>
		<description>Which link no longer seems to work?</description>
		<content:encoded><![CDATA[<p>Which link no longer seems to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-47797</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 27 Apr 2011 20:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-47797</guid>
		<description>Hi,

Your JSON parser code doesn&#039;t seem to be available anymore, would you mind providing it?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Your JSON parser code doesn&#8217;t seem to be available anymore, would you mind providing it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-33089</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Sat, 27 Nov 2010 23:27:53 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-33089</guid>
		<description>If &#039;year&#039; is an NSString, you can use the method &lt;strong&gt;integerValue&lt;/strong&gt; to convert the string to an integer.</description>
		<content:encoded><![CDATA[<p>If &#8216;year&#8217; is an NSString, you can use the method <strong>integerValue</strong> to convert the string to an integer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deve</title>
		<link>http://iPhoneDeveloperTips.com/networking/iphone-json-flickr-tutorial-part-1.html#comment-33082</link>
		<dc:creator>Deve</dc:creator>
		<pubDate>Sat, 27 Nov 2010 20:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=3442#comment-33082</guid>
		<description>Hello

in the bellow snippet profileType is defined as a NSString while year is defined as an int.
When setting the values of my class  with the json object the first line works but the second fail as year expect an int but not a NSString nor a Dictionary Object. What is the good/clean approach to cast my json year entry into an int?

profileType = [NSString stringWithFormat:@&quot;%@&quot;, [jsonEntry objectForKey:@&quot;profileType&quot;]]
year = [jsonEntry objectForKey:@&quot;year&quot;] 

Thanks :-)</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>in the bellow snippet profileType is defined as a NSString while year is defined as an int.<br />
When setting the values of my class  with the json object the first line works but the second fail as year expect an int but not a NSString nor a Dictionary Object. What is the good/clean approach to cast my json year entry into an int?</p>
<p>profileType = [NSString stringWithFormat:@"%@", [jsonEntry objectForKey:@"profileType"]]<br />
year = [jsonEntry objectForKey:@"year"] </p>
<p>Thanks :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

