<?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>Ben Collier</title>
	<atom:link href="http://bencollier.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://bencollier.net</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 17:56:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>App Store Keyword Searching Tips</title>
		<link>http://bencollier.net/2012/01/app-store-keyword-searching-tips/</link>
		<comments>http://bencollier.net/2012/01/app-store-keyword-searching-tips/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 17:40:09 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[App Store]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iTunes]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26474</guid>
		<description><![CDATA[From the iTunes Connect FAQ: [Developer login required] “Your app is searchable by your app name, your keywords and your company name.” This means you don’t have to waste valuable keywords by including your app or company name in the 100 byte keyword limit. To gain a few more characters you can also remove the spaces in-between [...]]]></description>
			<content:encoded><![CDATA[<p>From the <a title="Apple's App Store Developer Management Portal" href="http://itunesconnect.apple.com">iTunes Connect</a> FAQ: [Developer login required]</p>
<blockquote><p>“Your app is searchable by your app name, your keywords and your company name.”</p></blockquote>
<p style="text-align: left;">This means you don’t have to waste valuable keywords by including your app or company name in the 100 byte keyword limit.</p>
<p style="text-align: left;">To gain a few more characters you can also remove the spaces in-between keywords and separate them with commas: <em>just,like,this</em>.</p>
<p>However; don’t be a dick. It’s tempting to <a href="http://isource.com/2009/05/17/latest-charming-app-store-trend-stupidly-long-app-names-packed-with-keywords/">fill your app name up with many keywords</a>, this makes your app look cheap — don’t do it!</p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2012/01/app-store-keyword-searching-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Boilerplate Build Script: no manifest.appcache generated!</title>
		<link>http://bencollier.net/2011/11/html5-boilerplate-build-script-no-manifest-appcache-generated/</link>
		<comments>http://bencollier.net/2011/11/html5-boilerplate-build-script-no-manifest-appcache-generated/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 15:53:53 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26601</guid>
		<description><![CDATA[The HTML5 Boilerplate build script can auto generate your manifest.appcache file but it doesn’t out of the box. Slightly hidden away in the docs: To enable the appcache, just uncomment the file.manifest line in the project.properties file. It’ll create a manifest.appcache file and wire it all up. You’ll find the project.properties file in build/project. Now [...]]]></description>
			<content:encoded><![CDATA[<p>The HTML5 Boilerplate build script can auto generate your manifest.appcache file but it doesn’t out of the box.</p>
<p>Slightly hidden away in the <a href="http://html5boilerplate.com/docs/Offline/#automated-offline-support-via-the-build-script" title="Automated offline support via the build script">docs</a>:</p>
<blockquote><p>To enable the appcache, just uncomment the file.manifest line in the project.properties file. It’ll create a manifest.appcache file and wire it all up.</p></blockquote>
<p>You’ll find the project.properties file in build/project.</p>
<p>Now just do ant build and your HTML5 manifest file will be created and automatically referenced in your HTML file.</p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/11/html5-boilerplate-build-script-no-manifest-appcache-generated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode 4.2 Doesn’t Show Exception Stack Trace in Console</title>
		<link>http://bencollier.net/2011/11/xcode-4-2-doesnt-show-exception-stack-trace-in-console/</link>
		<comments>http://bencollier.net/2011/11/xcode-4-2-doesnt-show-exception-stack-trace-in-console/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 12:51:39 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[xcode]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26567</guid>
		<description><![CDATA[When using Xcode 4.2 for iOS development there’s an annoying bug where any exceptions crash to the main.m file instead of highlighting the line. Luckily you can set a custom breakpoint to restore the old and correct behaviour: Open the Breakpoint navigator (CMD + 6) Click the + button in the bottom left Select Add [...]]]></description>
			<content:encoded><![CDATA[<p>When using Xcode 4.2 for iOS development there’s an annoying bug where any exceptions crash to the main.m file instead of highlighting the line. Luckily you can set a custom breakpoint to restore the old and correct behaviour:</p>
<ol>
<li>Open the Breakpoint navigator (CMD + 6)</li>
<li>Click the + button in the bottom left</li>
<li>Select <em>Add Exception Breakpoint </em></li>
<li>Click <em>Done</em></li>
</ol>
<p><a href="http://bencollier.net/wp-content/uploads/2011/11/Screen-Shot-2011-11-17-at-22.36.27.png"><img class="aligncenter size-medium wp-image-26603" title="Xcode Breakpoint Navigator" src="http://bencollier.net/wp-content/uploads/2011/11/Screen-Shot-2011-11-17-at-22.36.27-780x537.png" alt="Xcode 4.2 Window" width="780" height="537" /></a></p>
<p>Voila!</p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/11/xcode-4-2-doesnt-show-exception-stack-trace-in-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status Barred: iOS Screenshot Status Bar Remover App</title>
		<link>http://bencollier.net/2011/11/status-barred-ios-screenshot-status-bar-remover-app/</link>
		<comments>http://bencollier.net/2011/11/status-barred-ios-screenshot-status-bar-remover-app/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 12:51:05 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[screenshots]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26556</guid>
		<description><![CDATA[So many iOS apps developers forget to remove the screenshots from their apps on the App Store; often revealing the horrendous times the screenshots were taken and detracting from the actual app. iTunes Connect recommends the removal of the status bar, and Status Barred removes the status bar perfectly regardless of the screenshot being retina, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://itunes.apple.com/gb/app/status-barred/id413853485?mt=12"><img class="size-full wp-image-26557 alignleft" title="Status Barred App Icon" src="http://bencollier.net/wp-content/uploads/2011/11/new-icon.png" alt="" width="224" height="224" /></a>So many iOS apps developers forget to remove the screenshots from their apps on the App Store; often revealing the horrendous times the screenshots were taken and detracting from the actual app.</p>
<p>iTunes Connect recommends the removal of the status bar, and Status Barred removes the status bar perfectly regardless of the screenshot being retina, iPhone, iPad, landscape or portrait. For $0.99 it saves a bunch of time whenever submitting or updating an app.</p>
<p><a href="http://itunes.apple.com/gb/app/status-barred/id413853485?mt=12">Available on the Mac App Store</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/11/status-barred-ios-screenshot-status-bar-remover-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS: Show Users the Reason You Require Their Location</title>
		<link>http://bencollier.net/2011/11/ios-show-user-the-reason-you-require-their-location/</link>
		<comments>http://bencollier.net/2011/11/ios-show-user-the-reason-you-require-their-location/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:30:41 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[objective c]]></category>
		<category><![CDATA[UI]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26547</guid>
		<description><![CDATA[A great, but underused location feature on iOS is the purpose property of the CLLocationManager. So many apps ask for your location — give your users confidence in sharing their location by telling them why you need it! Example: &#160; locationManager.purpose = @&#34;We'll only use your location to show you local events nearby.&#34;; &#160; You need to [...]]]></description>
			<content:encoded><![CDATA[<p>A great, but underused location feature on iOS is the <a title="Core Location iOS Developer Resources - purpose" href="http://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html#//apple_ref/occ/instp/CLLocationManager/purpose">purpose</a> property of the CLLocationManager.</p>
<p>So many apps ask for your location — give your users confidence in sharing their location by telling them <em>why </em>you need it!</p>
<p>Example:</p>
<pre class="objc">&nbsp;
locationManager.purpose = @<span style="color: #666666;">&quot;We'll only use your location to show you local events nearby.&quot;</span>;
&nbsp;</pre>
<p>You need to do this before you start the location monitoring, so:</p>
<pre class="objc">&nbsp;
CLLocationManager *locationManager = <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>CLLocationManager alloc<span style="color: #002200;">&#93;</span> init<span style="color: #002200;">&#93;</span>;
locationManager.purpose = @<span style="color: #666666;">&quot;We'll only use your location to show you local events nearby.&quot;</span>;
locationManager.delegate = self;
<span style="color: #002200;">&#91;</span>locationManager startUpdatingLocation<span style="color: #002200;">&#93;</span>;
&nbsp;</pre>
<p>Your users will now get a pleasant reason when you request their permission:<br />
<a href="http://bencollier.net/wp-content/uploads/2011/11/Screen-Shot-2011-11-03-at-20.56.27.png"><img src="http://bencollier.net/wp-content/uploads/2011/11/Screen-Shot-2011-11-03-at-20.56.27.png" alt="iOS iPhone Screen Location Prompt" title="iPhone App Location Screenshot" width="396" height="744" class="aligncenter size-full wp-image-26579" /></a></p>
<p>I’ve no idea why this is so rarely used, it’s been available since iOS 3.2.</p>
<p>Tip from the <a title="Core Location iOS Developer Resources" href="http://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html#//apple_ref/occ/instp/CLLocationManager/purpose">Apple docs</a>:</p>
<blockquote><p>You must set the value of this property prior to starting any location services. Because the string is ultimately displayed to the user, you should always load it from a localized strings file.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/11/ios-show-user-the-reason-you-require-their-location/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Boolean Values with TouchJSON</title>
		<link>http://bencollier.net/2011/11/using-boolean-values-with-touchjson/</link>
		<comments>http://bencollier.net/2011/11/using-boolean-values-with-touchjson/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 18:49:54 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[dictionary]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[objective c]]></category>
		<category><![CDATA[touchJSON]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26543</guid>
		<description><![CDATA[When creating an NSDictionary to serialize as JSON with TouchJSON you can’t set a BOOL value in the dictionary because it requires an object. Use an NSNumber, which will be converted to true or false by the TouchJSON library. Eg: &#160; NSMutableDictionary *dictionary = &#91;&#91;NSMutableDictionary alloc&#93; init&#93;; &#91;dictionary setObject:&#91;NSNumber numberWithBool:YES forKey:@&#34;shouldBeOn&#34;&#93;; &#91;dictionary setObject:&#91;NSNumber numberWithBool:NO forKey:@&#34;shouldBeOff&#34;&#93;; [...]]]></description>
			<content:encoded><![CDATA[<p>When creating an NSDictionary to serialize as JSON with <a href="https://github.com/TouchCode/TouchJSON" title="TouchJSON on github">TouchJSON</a> you can’t set a BOOL value in the dictionary because it requires an object.</p>
<p>Use an NSNumber, which will be converted to true or false by the TouchJSON library.</p>
<p>Eg:</p>
<pre class="objc">&nbsp;
<a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/ObjC_classic/Classes/NSMutableDictionary.html"><span style="color: #0000ff;">NSMutableDictionary</span></a> *dictionary = <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/ObjC_classic/Classes/NSMutableDictionary.html"><span style="color: #0000ff;">NSMutableDictionary</span></a> alloc<span style="color: #002200;">&#93;</span> init<span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#91;</span>dictionary setObject:<span style="color: #002200;">&#91;</span><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/ObjC_classic/Classes/NSNumber.html"><span style="color: #0000ff;">NSNumber</span></a> numberWithBool:YES forKey:@<span style="color: #666666;">&quot;shouldBeOn&quot;</span><span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#91;</span>dictionary setObject:<span style="color: #002200;">&#91;</span><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/ObjC_classic/Classes/NSNumber.html"><span style="color: #0000ff;">NSNumber</span></a> numberWithBool:NO forKey:@<span style="color: #666666;">&quot;shouldBeOff&quot;</span><span style="color: #002200;">&#93;</span>;
<a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/ObjC_classic/Classes/NSError.html"><span style="color: #0000ff;">NSError</span></a> *error = <span style="color: #0000ff;">NULL</span>;
<a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/ObjC_classic/Classes/NSData.html"><span style="color: #0000ff;">NSData</span></a> *jsonData = <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>CJSONSerializer serializer<span style="color: #002200;">&#93;</span> serializeObject:dictionary error:&amp;error<span style="color: #002200;">&#93;</span>;
&nbsp;</pre>
<p>Produces:</p>
<pre class="javascript"><span style="color: #66cc66;">&#123;</span>
    <span style="color: #3366CC;">&quot;shouldBeOn&quot;</span>: <span style="color: #003366; font-weight: bold;">true</span>,
    <span style="color: #3366CC;">&quot;shouldBeOff&quot;</span>: <span style="color: #003366; font-weight: bold;">false</span>
<span style="color: #66cc66;">&#125;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/11/using-boolean-values-with-touchjson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The software for this printer is currently unavailable [Lion]</title>
		<link>http://bencollier.net/2011/09/the-software-for-this-printer-is-currently-unavailable-lion/</link>
		<comments>http://bencollier.net/2011/09/the-software-for-this-printer-is-currently-unavailable-lion/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 12:11:37 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[printer drivers]]></category>
		<category><![CDATA[software update]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26228</guid>
		<description><![CDATA[Lion no longer installs all the printer drivers out of the box, I guess to cut down on unnecessary downloading from the Mac App Store. On 10.7.1 it wouldn’t let me add a printer with the error: The software for this printer is currently unavailable. Please contact the printer’s manufacturer for the latest software. However [...]]]></description>
			<content:encoded><![CDATA[<p>Lion no longer installs all the printer drivers out of the box, I guess to cut down on unnecessary downloading from the Mac App Store. On 10.7.1 it wouldn’t let me add a printer with the error:</p>
<blockquote><p>The software for this printer is currently unavailable. Please contact the printer’s manufacturer for the latest software.</p></blockquote>
<p>However by running<em> Software Update</em> (from the Apple menu bar) after connecting the printer, it successfully downloaded the correct drivers. The <em>Add Printer </em>option then automatically installs the printer once selected.</p>
<p>Update, thanks to <a href="http://www.185vfx.com/">Rob</a> in the comments for his suggestion that seems to be helping a lot of people:</p>
<blockquote><p>
If run­ning Apple’s Software Update doesn’t fix it for you, open Preferences-&gt;Print &amp; Scan and then hit ctrl-click (or right mouse) over the list of print­ers and select “Reset Printing System…”. That will unin­stall all your print­ers but then I was able to add the Officejet by click­ing the “+” but­ton and the error went away.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/09/the-software-for-this-printer-is-currently-unavailable-lion/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Last.fm doesn’t autostart with iTunes in Lion [Fix]</title>
		<link>http://bencollier.net/2011/07/last-fm-doesnt-autostart-with-itunes-in-lion-fix/</link>
		<comments>http://bencollier.net/2011/07/last-fm-doesnt-autostart-with-itunes-in-lion-fix/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 13:28:19 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[Update]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=26024</guid>
		<description><![CDATA[Update 04/08/2011: last.fm have updated their client, either use the Check for updates.. in the app or download it. Still no scrobbling but the release notes show they’ve fixed it for Lion: 1.5.4.28012 (mac) (04/08/11) —————————- * Plugin fix for iTunes 10.5 * 64bit version of the plugin for iTunes on Lion Original: Sadly the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update 04/08/2011:</strong> last.fm have updated their client, either use the <em>Check for updates..</em> in the app or <a href="http://www.last.fm/download/dodownload/?platform=Mac&p=" title="Download Last.fm Lion Update">download it</a>. </p>
<p>Still no scrobbling but the release notes show they’ve fixed it for Lion:</p>
<blockquote><p>1.5.4.28012 (mac) (04/08/11)<br />
—————————-<br />
* Plugin fix for iTunes 10.5<br />
* 64bit version of the plugin for iTunes on Lion</p></blockquote>
<p><strong>Original:</strong><br />
Sadly the last.fm client doesn’t autostart under Lion when you run iTunes; and there’s yet to be an official update. In fact the entire client has been rather neglected, seeing its last update in <a href="http://cdn.last.fm/client/ChangeLog.txt" title="Last.fm client release notes">October 2010</a>. </p>
<p>If like me, you’ve lost a bunch of scrobbles because you’ve forgotten to open it, you can add last.fm to your login items so it’ll automatically open when your Mac starts.</p>
<p>Open <em>System Preferences</em> then &gt; <em>Users &amp; Groups</em>; select your username and toggle to the <em>Login Items</em> page. Click the <em>+</em> and select the last.fm app to add to the list.</p>
<p><a href="http://bencollier.net/wp-content/uploads/2011/07/Screen-Shot-2011-07-29-at-19.59.38.png"><img src="http://bencollier.net/wp-content/uploads/2011/07/Screen-Shot-2011-07-29-at-19.59.38-759x600.png" alt="Mac System Preferences - adding last.fm to login items" title="Adding last.fm to your login items " width="759" height="600" class="aligncenter size-medium wp-image-26026" /></a></p>
<p>If like myself, you have the last.fm not show in the dock (and only the menu bar), select the <em>Hidden</em> checkbox.</p>
<p>Unfortunately there’s no iPhone / iPad scrobbling support on Lion yet, and I’m not sure how iOS 5 WiFi sync will be able to handle it.. </p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/07/last-fm-doesnt-autostart-with-itunes-in-lion-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode Install Requires iTunes to be Closed</title>
		<link>http://bencollier.net/2011/07/xcode-install-requires-itunes-to-be-closed/</link>
		<comments>http://bencollier.net/2011/07/xcode-install-requires-itunes-to-be-closed/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 11:51:23 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[xcode]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=25984</guid>
		<description><![CDATA[When installing or updating Xcode you need to close iTunes for it to complete. If you’ve closed iTunes but still get this message: Open Activity Monitor and quit iTunes Helper. The installation will now finish. This mainly seems to happen on beta versions of iTunes. The helper app runs to detect iOS devices being connected [...]]]></description>
			<content:encoded><![CDATA[<p>When installing or updating Xcode you need to close iTunes for it to complete. If you’ve closed iTunes but still get this message:</p>
<p><a href="http://bencollier.net/wp-content/uploads/2011/07/Screen-Shot-2011-07-20-at-23.12.03.png"><img src="http://bencollier.net/wp-content/uploads/2011/07/Screen-Shot-2011-07-20-at-23.12.03.png" alt="In order to continue the install please quit iTunes " title="Xcode requires iTunes to be closed." width="484" height="341" class="aligncenter size-full wp-image-25998" /></a></p>
<p>Open <em>Activity Monitor</em> and quit <em>iTunes Helper</em>. The installation will now finish.</p>
<p>This mainly seems to happen on beta versions of iTunes. The helper app runs to detect iOS devices being connected so it can auto-open iTunes.</p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/07/xcode-install-requires-itunes-to-be-closed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion Login Contact Details Message</title>
		<link>http://bencollier.net/2011/07/mac-os-x-lion-login-contact-details-message/</link>
		<comments>http://bencollier.net/2011/07/mac-os-x-lion-login-contact-details-message/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 16:46:46 +0000</pubDate>
		<dc:creator>Ben Collier</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<guid isPermaLink="false">http://bencollier.net/?p=25978</guid>
		<description><![CDATA[In Mac OS X Lion you can now add a short message to the login screen. It’s a long shot but adding contact details might increase the chances of a lost machine being recovered by 0.5%. To update the message go to System Preferences &#62; Security &#38; Privacy &#62; General where you can choose Show [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_25986" class="wp-caption aligncenter" style="width: 630px"><a href="http://bencollier.net/wp-content/uploads/2011/07/20110727-052745-e1311785037721.jpg"><img src="http://bencollier.net/wp-content/uploads/2011/07/20110727-052745-e1311785037721.jpg" alt="Screen lock text on Mac OS X Lion" title="Screen Lock Message" width="620" height="311" class="size-full wp-image-25986" /></a><p class="wp-caption-text">Hey call me! (and give my laptop back)</p></div>
<p>In Mac OS X Lion you can now add a short message to the login screen. It’s a long shot but adding contact details might increase the chances of a lost machine being recovered by 0.5%.</p>
<p>To update the message go to <em>System Preferences</em> &gt; <em>Security &amp; Privacy</em> &gt; <em>General</em> where you can choose <em>Show a message when the screen is locked</em>.<br />
<img class="aligncenter size-medium wp-image-25988" title="Lion screen locked message preference" src="http://bencollier.net/wp-content/uploads/2011/07/Screen-Shot-2011-07-27-at-17.41.09-725x600.png" alt="System preferences screenshot on Mac OS X Lion " width="725" height="600" /></p>
<p><em>Don’t forgot to use your own number, although I am happy for any lost laptops to be sent to me.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://bencollier.net/2011/07/mac-os-x-lion-login-contact-details-message/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 7.033 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 11:18:45 -->

