<?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: Swift Core Data From Scratch: Workshop 1	</title>
	<atom:link href="https://theapplady.net/swift-core-data-from-scratch-workshop-1/feed/" rel="self" type="application/rss+xml" />
	<link>https://theapplady.net/swift-core-data-from-scratch-workshop-1/</link>
	<description></description>
	<lastBuildDate>Fri, 23 Oct 2015 19:05:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>
		By: The Applady		</title>
		<link>https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-63</link>

		<dc:creator><![CDATA[The Applady]]></dc:creator>
		<pubDate>Fri, 23 Oct 2015 19:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://theapplady.net/?p=33701#comment-63</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-62&quot;&gt;Zardoz&lt;/a&gt;.

Your suggestion is appreciated. I will do that when I update this tutorial.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-62">Zardoz</a>.</p>
<p>Your suggestion is appreciated. I will do that when I update this tutorial.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Zardoz		</title>
		<link>https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-62</link>

		<dc:creator><![CDATA[Zardoz]]></dc:creator>
		<pubDate>Thu, 22 Oct 2015 02:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://theapplady.net/?p=33701#comment-62</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-61&quot;&gt;The Applady&lt;/a&gt;.

Thank you so much for your reply. Your tutorials have really useful for helping me put together a basic tableView app. However, might I also suggest you add UILocalizedIndexedCollation in any future update to this set of  tutorials? It might seem redundant since you&#039;ve already shown use how to add a Search Bar. But Apple includes localized indexes with their built-in apps, so end-users would likely appreciate having the flexibility of  having both features.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-61">The Applady</a>.</p>
<p>Thank you so much for your reply. Your tutorials have really useful for helping me put together a basic tableView app. However, might I also suggest you add UILocalizedIndexedCollation in any future update to this set of  tutorials? It might seem redundant since you&#8217;ve already shown use how to add a Search Bar. But Apple includes localized indexes with their built-in apps, so end-users would likely appreciate having the flexibility of  having both features.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: The Applady		</title>
		<link>https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-61</link>

		<dc:creator><![CDATA[The Applady]]></dc:creator>
		<pubDate>Thu, 22 Oct 2015 02:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://theapplady.net/?p=33701#comment-61</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-60&quot;&gt;Zardoz&lt;/a&gt;.

If you r using the iOS 9 and Swift 2.0 you&#039;ll have to change the if statement to this:

if imgUrl.scheme.isEmpty != true &#038;&#038; imgUrl.host != nil

Also, you&#039;ll have to use the new error handler code in the project&#039;s class files; which look something like this:

do {
   try fetchedResultsController!.performFetch()
}
catch let error as NSError {
   print(error)
}

By the way, for an image to appear in the Image View, you&#039;ll have to disable the &quot;App Transport Security&quot; in the project&#039;s Info.plist file. The details of how to do that is document in &lt;a href=&quot;http://theapplady.net/play-a-video-when-a-table-view-cell-is-tapped/&quot; rel=&quot;nofollow&quot;&gt;this post&#039;s&lt;/a&gt; section entitled, PROBLEM: THE VIDEO WON&#039;T PLAY

Finally, here is the Swift 2.0 version of the this post&#039;s Xcode project:
&lt;a href=&quot;http://theapplady.net/wp-content/uploads/2015/10/SwiftCoreDataFromScratch.zip&quot; rel=&quot;nofollow&quot;&gt;SwiftCoreDataFromScratch&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-60">Zardoz</a>.</p>
<p>If you r using the iOS 9 and Swift 2.0 you&#8217;ll have to change the if statement to this:</p>
<p>if imgUrl.scheme.isEmpty != true &amp;&amp; imgUrl.host != nil</p>
<p>Also, you&#8217;ll have to use the new error handler code in the project&#8217;s class files; which look something like this:</p>
<p>do {<br />
   try fetchedResultsController!.performFetch()<br />
}<br />
catch let error as NSError {<br />
   print(error)<br />
}</p>
<p>By the way, for an image to appear in the Image View, you&#8217;ll have to disable the &#8220;App Transport Security&#8221; in the project&#8217;s Info.plist file. The details of how to do that is document in <a href="http://theapplady.net/play-a-video-when-a-table-view-cell-is-tapped/" rel="nofollow">this post&#8217;s</a> section entitled, PROBLEM: THE VIDEO WON&#8217;T PLAY</p>
<p>Finally, here is the Swift 2.0 version of the this post&#8217;s Xcode project:<br />
<a href="http://theapplady.net/wp-content/uploads/2015/10/SwiftCoreDataFromScratch.zip" rel="nofollow">SwiftCoreDataFromScratch</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Zardoz		</title>
		<link>https://theapplady.net/swift-core-data-from-scratch-workshop-1/#comment-60</link>

		<dc:creator><![CDATA[Zardoz]]></dc:creator>
		<pubDate>Tue, 20 Oct 2015 19:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://theapplady.net/?p=33701#comment-60</guid>

					<description><![CDATA[Under Xcode 7.x, this line of code

&lt;i&gt;if imgUrl.scheme != nil &#038;&#038; imgUrl.host != nil&lt;/i&gt;

returns this error:

&lt;i&gt;Binary operator &#039;!=&#039; cannot be applied to operands of type &#039;String&#039; and &#039;NilLiteralConvertible&#039;&lt;/i&gt;



Please advise what the fix is for this because my entire project is on hold until I solve this problem.]]></description>
			<content:encoded><![CDATA[<p>Under Xcode 7.x, this line of code</p>
<p><i>if imgUrl.scheme != nil &amp;&amp; imgUrl.host != nil</i></p>
<p>returns this error:</p>
<p><i>Binary operator &#8216;!=&#8217; cannot be applied to operands of type &#8216;String&#8217; and &#8216;NilLiteralConvertible&#8217;</i></p>
<p>Please advise what the fix is for this because my entire project is on hold until I solve this problem.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
