Wednesday, July 27, 2011

Your certificate request has been created on disk.


Your certificate request has been created on disk.

Provisioning Instructions

Instructions (pdf)

Set up your Development Team (for those enrolled as a Company)
• Request and Authorize iOS Development Certificates
• Designate Apple Devices for your Development Team
• Create unique App IDs for your Applications
• Create and Download a Development Provisioning Profile

Saturday, July 23, 2011

For Real? - apple developer site down?

HERE
iOS Developer

NSPredicate in action...

NSPredicate *predicate = [NSPredicate predicateWithFormat:
@"self isKindOfClass: %@",
[UIButton class]];
NSArray *buttons = [self.view.subviews
filteredArrayUsingPredicate:predicate]];

OmniGraffle Update 5.3



OmniGraffle Update 5.3...

XCode 4.1 - Installed!

After installing there will be an app called "Install xcode.app". You may need to interactively run this to install the new version of Xcode.

Friday, July 22, 2011

Waste Mac App Store Preferences to reinstall app from Mac App Store

I had this problem with Xcode after installing Lion

found article HERE

MAS Update Bug
1. Quit the Mac App Store
2. Trash the following folders and files; (~ is your Home folder)

~/Library/Caches/com.apple.appstore
~/Library/Caches/com.apple.storeagent
~/Library/Cookies/com.apple.appstore.plist

~/Library/Preferences/com.apple.appstore.plist
~/Library/Preferences/com.apple.storeagent.plist

3. Restart your Mac
4. Open the Mac App Store
5. Log into your MAS account

Thursday, July 21, 2011

NSDateFormatter


NSDateFormatter *dateFormat = [[[NSDateFormatter alloc] init] autorelease];
[dateFormat setDateFormat:@"MM/dd/yyyy HH:mm"];
[dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
NSDate *myDate = [dateFormat dateFromString:@"07/21/2011 14:59"];