<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RobertHarrison.ca</title>
	<atom:link href="http://robertharrison.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertharrison.ca</link>
	<description>Programming and technology notes</description>
	<lastBuildDate>Wed, 25 Jan 2012 21:24:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>XCode Hangs when Attaching to App</title>
		<link>http://robertharrison.ca/2012/01/xcode-hangs-attaching-to-app/</link>
		<comments>http://robertharrison.ca/2012/01/xcode-hangs-attaching-to-app/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 21:24:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=260</guid>
		<description><![CDATA[XCode 4 would hang while attaching to my iOS app. After some research and trial and error, I eventually resolved the problem. There appears to be a number of different causes and solutions to the problem. In my case, the problem was caused by a folder reference (blue folder) under the Supporting Files. Deleting the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>XCode 4</strong> would hang while attaching to my iOS app.  After some research and trial and error, I eventually resolved the problem.  There appears to be a number of different causes and solutions to the problem.  In my case, the problem was caused by a <strong>folder reference</strong> (blue folder) under the Supporting Files.  Deleting the folder reference and then adding it back solved the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2012/01/xcode-hangs-attaching-to-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Upgrade to iOS 5</title>
		<link>http://robertharrison.ca/2011/10/how-to-upgrade-to-ios-5/</link>
		<comments>http://robertharrison.ca/2011/10/how-to-upgrade-to-ios-5/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 22:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=257</guid>
		<description><![CDATA[Posted some instructions on how to upgrade to iOS 5 here]]></description>
			<content:encoded><![CDATA[<p>Posted some instructions on how to upgrade to iOS 5 <a href="http://rwhtechnology.com/blog/ipad-101/upgrade-to-ios-5/"/>here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/10/how-to-upgrade-to-ios-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UIBarButtonItem &#8211; Programmatically</title>
		<link>http://robertharrison.ca/2011/10/uibarbuttonitem-programmatically/</link>
		<comments>http://robertharrison.ca/2011/10/uibarbuttonitem-programmatically/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 16:51:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=249</guid>
		<description><![CDATA[There is a great tutorial on how to programmatically create and customized the UINavigationController (including UIBarButtonItem) here. One issue I had was while Adding items to the right of your Navigation Bar. A bar button item is created like so: UIBarButtonItem *myButton = [[UIBarButtonItem alloc] initWithTitle@"My Button" style:UIBarButtonItemStyleBordered target:self action:@selector(doSomething)]; self.navigationItem.rightBarButtonItem = myButton; [myButton release]; [...]]]></description>
			<content:encoded><![CDATA[<p>There is a great tutorial on how to programmatically create and customized the UINavigationController (including UIBarButtonItem) <a href="http://cocoadevblog.com/uinavigationcontroller-customization-tutorial"/>here</a>.</p>
<p>One issue I had was while <strong>Adding items to the right of your Navigation Bar</strong>.  A bar button item is created like so:</p>
<p><code><br />
UIBarButtonItem *myButton = [[UIBarButtonItem alloc] initWithTitle@"My Button" style:UIBarButtonItemStyleBordered target:self action:@selector(doSomething)];<br />
self.navigationItem.rightBarButtonItem = myButton;<br />
[myButton release];<br />
</code></p>
<p>The <strong>doSomething</strong> above, is a method and it looks like this:</p>
<p><code><br />
- (IBAction)doSomething:(id)sender<br />
{<br />
     NSLog(@"%@", @"My Button was pressed");<br />
}<br />
</code></p>
<p>You might expect this to work, however, when the button is pressed the program will crash with an <strong>unrecognized selector</strong> error.  This is because the <strong>signature</strong> of the doSomething method has a colon on the end of it: <strong>doSomething:</strong></p>
<p>Therefore, the code for creating the UIBarButtonItem should be:</p>
<p><code><br />
UIBarButtonItem *myButton = [[UIBarButtonItem alloc] initWithTitle@"My Button" style:UIBarButtonItemStyleBordered target:self action:@selector(doSomething:)];<br />
self.navigationItem.rightBarButtonItem = myButton;<br />
[myButton release];<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/10/uibarbuttonitem-programmatically/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPad 101 &#8211; How to Increase Text Size</title>
		<link>http://robertharrison.ca/2011/09/ipad-101-increase-text-size/</link>
		<comments>http://robertharrison.ca/2011/09/ipad-101-increase-text-size/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 06:29:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPad 101]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=241</guid>
		<description><![CDATA[Reading e-mail in the Mail app can really strain the eyes if you suffer from poor eye-sight. The iPad has built-in accessibility features, which enable the text size to be increased. Increasing the text size is the topic of the first of my iPad 101 tutorials. The tutorials are hosted on my RWH Technology site. [...]]]></description>
			<content:encoded><![CDATA[<p>Reading e-mail in the Mail app can really strain the eyes if you suffer from poor eye-sight. The <strong>iPad</strong> has built-in <strong>accessibility</strong> features, which enable the text size to be increased. <a href="http://rwhtechnology.com/blog/ipad-101/increase-text-size/">Increasing the text size</a> is the topic of the first of my <strong><a href="http://rwhtechnology.com/blog/ipad-101/">iPad 101</a></strong> tutorials. The tutorials are hosted on my <a href="http://www.rwhtechnology.com">RWH Technology</a> site. Click <a href="http://rwhtechnology.com/blog/ipad-101/increase-text-size/">here</a> to read the tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/09/ipad-101-increase-text-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom iOS UIViewController (Universal)</title>
		<link>http://robertharrison.ca/2011/09/custom-ios-uiviewcontroller-universal/</link>
		<comments>http://robertharrison.ca/2011/09/custom-ios-uiviewcontroller-universal/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 03:20:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=223</guid>
		<description><![CDATA[These are the steps to create a custom UIViewControllers and .XIB files that take the place of the default MainWindow_iPhone.xib and MainWindow_iPad.xib in a Universal application. Below is the architecture diagram. A custom HelloUniverseViewController will inherit from UIViewController. HelloUniverseViewController will not have a .XIB file. HelloUniverseViewController_iPhone and HelloUniverseViewController_iPad inherit from HelloUniverseViewController and have .XIB files. [...]]]></description>
			<content:encoded><![CDATA[<p>These are the steps to create a custom UIViewControllers and .XIB files that take the place of the default MainWindow_iPhone.xib and MainWindow_iPad.xib in a Universal application.</p>
<p>Below is the architecture diagram.  A custom HelloUniverseViewController will inherit from UIViewController.  HelloUniverseViewController will not have a .XIB file.  HelloUniverseViewController_iPhone and HelloUniverseViewController_iPad inherit from HelloUniverseViewController and have .XIB files.  Functionality that is common between the two devices should be implemented in HelloUniverseViewController.  Device-specific functionality should be implemented in the appropriate iPhone or iPad view controller.</p>
<div style="overflow:auto; width:100%;">
<img src="image/blog/custom-ios-uiviewcontroller-universal/diagram.png" width="621" height="245" alt="Class Diagram"/>
</div>
<p>1. Create a new <b>Window-based Application</b>.<br />
     &#8211; Device Family = Universal</p>
<p>2. In the HelloUniverse folder, add a new <b>UIViewController subclass</b>.<br />
     &#8211; UNCHECK &#8220;Targeted for iPad&#8221;<br />
     &#8211; UNCHECK &#8220;With XIB for user interface&#8221;<br />
     &#8211; Save As &#8220;HelloUniverseViewController&#8221;</p>
<p>3. Edit HelloUniverseAppDelegate.h.  Add the bold lines below.</p>
<pre style="text-align:left;">
#import &lt;UIKit/UIKit.h&gt;

<b>@class HelloUniverseViewController;</b>

@interface HelloAppDelegate : NSObject &lt;UIApplicationDelegate]]]]&gt;

@property (nonatomic, retain) IBOutlet UIWindow *window;
<b>@property (nonatomic, retain) IBOutlet HelloUniverseViewController *viewController;</b>

@end
</pre>
<p>4. Edit HelloUniverseAppDelegate.m.  Add the bold lines below.</p>
<pre style="text-align:left;">
<b>#import "HelloUniverseViewController.h"</b>

@synthesize window = _window;
<b>@synthesize viewController = _viewController;</b>

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.

    <b>self.window.rootViewController = self.viewController;</b>

    [self.windowmakeKeyAndVisible];
    return YES;
}

- (void)dealloc
{
    [_window release];
    <b>[_viewController release];</b>
    [super dealloc];
}
</pre>
<p><b><u>iPhone</u></b></p>
<p>5. In the iPhone folder, add a new UIViewController subclass.<br />
     &#8211; Subclass of HelloUniverseViewController<br />
     &#8211; UNCHECK &#8220;Targeted for iPad&#8221;<br />
     &#8211; CHECK &#8220;With XIB for user interface&#8221;<br />
     &#8211; Save As &#8220;HelloUniverseViewController_iPhone&#8221;</p>
<p>6. In the iPhone folder, open MainWindow_iPhone.xib.</p>
<p>7. From the Objects list, drag a View Controller object onto the bar.</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller-universal/ObjectList.png" width="409" height="139" alt="Object List"/></p>
<p> |<br />
 |<br />
V</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller-universal/Bar.png" width="49" height="231" alt="Bar"/></p>
<p>8. Select newly added View Controller object.</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller-universal/UIViewController_Button.png" width="50" height="45" alt="UIViewController button"/></p>
<p>9. Go to the <b>Identity Inspector</b> and change the <b>Class</b> to HelloUniverseViewController_iPhone.</p>
<p>10. Go to the <b>Connections Inspector</b> and add a <b>New Referencing Outlet</b>, <b>viewController = App Delegate</b></p>
<p>11. Add a label to the HelloUniverseViewController_iPhone.xib: &#8220;Hello Universe iPhone&#8221;</p>
<p><b><u>iPAD</u></b></p>
<p>12. In the iPad folder, add a new UIViewController subclass.<br />
     &#8211; Subclass of HelloUniverseViewController<br />
     &#8211; CHECK &#8220;Targeted for iPad&#8221;<br />
     &#8211; CHECK &#8220;With XIB for user interface&#8221;<br />
     &#8211; Save As &#8220;HelloUniverseViewController_iPad&#8221;</p>
<p>13. In the iPad folder, open MainWindow_iPad.xib.</p>
<p>14. From the Objects list, drag a View Controller object onto the bar.</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller-universal/ObjectList.png" width="409" height="139" alt="Object List"/></p>
<p> |<br />
 |<br />
V</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller-universal/Bar.png" width="49" height="231" alt="Bar"/></p>
<p>15. Select newly added View Controller object.</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller-universal/UIViewController_Button.png" width="50" height="45" alt="UIViewController button"/></p>
<p>16. Go to the <b>Identity Inspector</b> and change the <b>Class</b> to HelloUniverseViewController_iPad.</p>
<p>17. Go to the <b>Connections Inspector</b> and add a <b>New Referencing Outlet</b>, <b>viewController = Hello Universe App Delegate i Pad</b></p>
<p>18. Add a label to the HelloUniverseViewController_iPhone.xib: &#8220;Hello Universe iPhone&#8221;</p>
<p>19. Save, Build and Run</p>
<p>Click <a href="/downloads/blog/custom-ios-uiviewcontroller-universal/HelloUniverse.zip">here</a> to download the sample XCode project.  It targets iOS 4.3 for the iPhone and iPad.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/09/custom-ios-uiviewcontroller-universal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom iOS UIViewController</title>
		<link>http://robertharrison.ca/2011/09/custom-ios-uiviewcontroller/</link>
		<comments>http://robertharrison.ca/2011/09/custom-ios-uiviewcontroller/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 01:22:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=200</guid>
		<description><![CDATA[These are the steps to create a custom UIViewController and .XIB that take the place of the default MainWindow.xib. 1. Create a new Window-based Application. 2. Add a new UIViewController subclass. &#8211; CHECK &#8220;With XIB for user interface&#8221; &#8211; Save As &#8220;HelloViewController&#8221; 3. Edit HelloAppDelegate.h. Add the bold lines below. #import &#60;UIKit/UIKit.h&#62; @class HelloViewController; @interface [...]]]></description>
			<content:encoded><![CDATA[<p>These are the steps to create a custom UIViewController and .XIB that take the place of the default MainWindow.xib.</p>
<p>1. Create a new <b>Window-based Application</b>.</p>
<p>2. Add a new <b>UIViewController subclass</b>.<br />
     &#8211; CHECK &#8220;With XIB for user interface&#8221;<br />
     &#8211; Save As &#8220;HelloViewController&#8221;</p>
<p>3. Edit HelloAppDelegate.h.  Add the bold lines below.</p>
<pre style="text-align:left;">
#import &lt;UIKit/UIKit.h&gt;

<b>@class HelloViewController;</b>

@interface HelloAppDelegate : NSObject &lt;UIApplicationDelegate]]&gt;

@property (nonatomic, retain) IBOutlet UIWindow *window;
<b>@property (nonatomic, retain) IBOutlet HelloViewController *viewController;</b>

@end
</pre>
<p>4. Edit HelloAppDelegate.m.  Add the bold lines below.</p>
<pre style="text-align:left;">
<b>#import "HelloViewController.h"</b>

@synthesize window = _window;
@synthesize viewController = _viewController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.

    <b>self.window.rootViewController = self.viewController;</b>

    [self.windowmakeKeyAndVisible];
    return YES;
}

- (void)dealloc
{
    [_window release];
    <b>[_viewController release];</b>
    [super dealloc];
}
</pre>
<p>5. Open MainWindow.xib.</p>
<p>6. From the Objects list, drag a View Controller object onto the bar.</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller/ObjectList.png" width="409" height="139" alt="Object List"/></p>
<p> |<br />
 |<br />
V</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller/Bar.png" width="49" height="231" alt="Bar"/></p>
<p>7. Select newly added View Controller object.</p>
<p><img src="/image/blog/custom-ios-uiviewcontroller/UIViewController_Button.png" width="50" height="45" alt="UIViewController button"/></p>
<p>8. Go to the <b>Identity Inspector</b> and change the <b>Class</b> to HelloViewController.</p>
<p>9. Go to the <b>Connections Inspector</b> and add a <b>New Referencing Outlet</b>, <b>viewController = Hello App Delegate</b></p>
<p>10. Add a label to the HelloViewController.xib: &#8220;Hello World!&#8221;</p>
<p>11. Save, Build and Run</p>
<p>Click <a href="/downloads/blog/custom-ios-uiviewcontroller/Hello.zip">here</a> to download the sample XCode project.  It targets iOS 4.3 for the iPad.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/09/custom-ios-uiviewcontroller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submitting iOS App to App Store</title>
		<link>http://robertharrison.ca/2011/08/submitting-ios-app-to-app-store/</link>
		<comments>http://robertharrison.ca/2011/08/submitting-ios-app-to-app-store/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 20:39:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=174</guid>
		<description><![CDATA[After completing all the forms in iTunes Connect, you will need to upload your app to the App Store. The app can be uploaded using the Organizer in XCode 4. If you have not already done so, you will need to download and install a Distribution Provisioning Profile. Log into the Member Center on http://developer.apple.com [...]]]></description>
			<content:encoded><![CDATA[<p>After completing all the forms in <a href="https://itunesconnect.apple.com">iTunes Connect</a>, you will need to upload your app to the App Store.  The app can be uploaded using the Organizer in XCode 4.</p>
<p>If you have not already done so, you will need to download and install a <b>Distribution Provisioning Profile</b>.  Log into the Member Center on <a href="http://developer.apple.com">http://developer.apple.com</a> and then go to the <b>iOS Provisioning Portal</b>.  Then go to the Provisioning page and click on the <b>Distribution</b> tab.  Then create a <b>New Profile</b> for your app.  Once it&#8217;s created, download and install the profile.  The profile can be installed by clicking on the downloaded .mobi file.</p>
<p>Next, make sure the XCode project is using the Distribution profile for code signing.  First, go to your project&#8217;s <b>Build Settings</b> as show in the image below:</p>
<div style="overflow:auto; width:100%;">
<img src="/image/XCode_Build_Settings.png" width="901" height="49" alt="XCode Build Settings"/>
</div>
<p>Then, under the <b>Code Signing</b> section, change the <b>Release</b> and <b>Any iOS SDK</b> settings to the Distribution profile you downloaded/installed:</p>
<div style="overflow:auto; width:100%;">
<img src="/image/XCode_CodeSigning.png" width="646" height="110" alt="XCode Code Signing"/>
</div>
<p>Now, the project needs to be Archived.  First, change the Active Configuration to the iOS Device.  In my case, it is the iPad named Playa:</p>
<p><img src="/image/XCode_Active_Config_Playa.png" width="421" height="50" alt="XCode Active Configuration"/></p>
<p>Then go to Product -> Archive.  This will create an archive package of the app that can be uploaded to the App Store.  When the archiving process is complete, it should open the Organizer.  If it does not, the Organizer can be accessed from Window -> Organizer.</p>
<p>With the Organizer window open and your app selected, click the <b>Validate</b> button.  Enter your Apple Developer credentials and make sure you choose the correct Distribution profile (it should match the one selected in the Project Build Settings).  If all is good, the validation process will be successful and you can proceed to submitting the app.</p>
<p>If there are no errors in the validation process, then you can submit the app.  With the Organizer window open and your app selected, click the <b>Submit</b> button.  Again, enter your Apple Developer credentials and make sure you choose the correct Distribution profile.  Once, the submit process is complete, you will get a message saying so.</p>
<p>Note: If you make any code or project changes, remember to re-create the archive.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/08/submitting-ios-app-to-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert mp3 to caf on Mac OS X</title>
		<link>http://robertharrison.ca/2011/07/convert-mp3-to-caf-on-mac-os-x/</link>
		<comments>http://robertharrison.ca/2011/07/convert-mp3-to-caf-on-mac-os-x/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 01:36:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=152</guid>
		<description><![CDATA[For my SpeakColors project, I needed to convert some .mp3 files to .caf. Mac OS X contains a utility called afconvert for doing such a task. Below is an example of converting &#8220;red.mp3&#8243; to &#8220;red.caf&#8221;: /usr/bin/afconvert -f caff -d LEI16 red.mp3 red.caf The above command is run from command line. Check out the documentation for [...]]]></description>
			<content:encoded><![CDATA[<p>For my <a href="http://www.speakcolors.com">SpeakColors</a> project, I needed to convert some .mp3 files to .caf.  Mac OS X contains a utility called <a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/afconvert.1.html">afconvert</a> for doing such a task.  Below is an example of converting &#8220;red.mp3&#8243; to &#8220;red.caf&#8221;:</p>
<p><code>/usr/bin/afconvert -f caff -d LEI16 red.mp3 red.caf</code></p>
<p>The above command is run from command line.  Check out the <a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/afconvert.1.html">documentation</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/07/convert-mp3-to-caf-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade to XCode 4.1</title>
		<link>http://robertharrison.ca/2011/07/upgrade-to-xcode-4-1/</link>
		<comments>http://robertharrison.ca/2011/07/upgrade-to-xcode-4-1/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 21:02:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=146</guid>
		<description><![CDATA[After upgrading to Mac OS X Lion, XCode 4.0.2 will no longer work. Upgrade to XCode 4.1, which is available on the Mac App Store for free.]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Mac OS X Lion, XCode 4.0.2 will no longer work.  Upgrade to XCode 4.1, which is available on the Mac App Store for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/07/upgrade-to-xcode-4-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion Download Error</title>
		<link>http://robertharrison.ca/2011/07/mac-os-x-lion-download-error/</link>
		<comments>http://robertharrison.ca/2011/07/mac-os-x-lion-download-error/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 03:16:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://robertharrison.ca/?p=131</guid>
		<description><![CDATA[While attempting to download Mac OS X Lion from the AppStore, I got the following error: The application you tried to download could not be downloaded. Check your internet connection and try again. I checked my internet connection and it was working fine. After pressing the Download button every few minutes, Lion eventually downloaded. The [...]]]></description>
			<content:encoded><![CDATA[<p>While attempting to download Mac OS X Lion from the AppStore, I got the following error:</p>
<p><code>The application you tried to download could not be downloaded. Check your internet connection and try again.</code></p>
<p>I checked my internet connection and it was working fine.  After pressing the Download button every few minutes, Lion eventually downloaded.  The Lion servers were probably overloaded.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertharrison.ca/2011/07/mac-os-x-lion-download-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

