Show Mountain Lion’s Notification Center With a Gesture

Apple claim you can reveal the Notification Center with a simple two finger swipe from right to left on the trackpad, but what they don’t mention is the swipe has to start from the very edge or off the right of the trackpad for it to register. Otherwise the standard two finger scroll will kick in.

If you use a Magic Mouse you’re left gesture-less, but you’re able to add Notification Center as a hot corner. The top right of the screen makes the most sense for this as that’s where the Notification Center icon is.

iAd Producer Updated to 2.1.1 & WWDC Session Video Available

Apple have updated iAd Producer to 2.1.1. Looks like mainly bug fixes and some UI tweaks.

This update contains various improvements, including fixes that:
• Correct handling of assets with normal and high-resolution versions.
• Address issues with animation preview on canvas.

If you’re a registered Apple iOS developer you can get it from the Developer Portal. 

You can also view the iAd Producer WWDC video, session 605 available on iTunes. 

App Store Keyword Searching Optimisation Tips

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 keywords and separate them with commas: just,like,this.

However; don’t be a dick. It’s tempting to fill your app name up with many keywords, this makes your app look cheap – don’t do it!

Status Barred: iOS Screenshot Status Bar Remover App

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, iPhone, iPad, landscape or portrait. For $0.99 it saves a bunch of time whenever submitting or updating an app.

Available on the Mac App Store

iOS: Show Users the Reason You Require Their Location

Update: iOS 6 deprecated the purpose property and it now has to be set in your Info.plist with the key NSLocationUsageDescription which is displayed in Xcode as Privacy – Location Usage Description. If you’re still supporting iOS 5 and earlier make sure you include both.

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:

locationManager.purpose = @"We'll only use your location to show you local events nearby.";

You need to do this before you start the location monitoring, so:

CLLocationManager *locationManager = [[CLLocationManager alloc] init];
locationManager.purpose = @"We'll only use your location to show you local events nearby.";
locationManager.delegate = self;
[locationManager startUpdatingLocation];

Your users will now get a pleasant reason when you request their permission:
iOS iPhone Screen Location Prompt

I’ve no idea why this is so rarely used, it’s been available since iOS 3.2.

Tip from the Apple docs:

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.