Goodie Roundup – August 20th, 2010

Interesting iPhone and iPad development, design or even marketing items. Often new, sometimes old.

Have a goodie to share? Send it in!

Posted in Goodie Roundup | Leave a comment

Podcast with Josh Clark of Tapworthy: Designing Great iPhone Apps — Josh shares his insights, design framework and experience on mobile app development on the Startup Success Podcast. 8/20/10

Beginning iPad Development for iPhone Developers

Beginning iPad Development for iPhone DevelopersIf you’re an existing iPhone developer looking to branch out to the iPad, Apress’ Beginning iPad Development for iPhone Developers: Mastering the iPad SDK might be just the right book for  you. Aimed at current iPhone developers, it builds upon your existing skill set and teaches how to developer apps for the iPad’s unique APIs:

Best-selling authors Jack Nutting, Dave Wooldridge, and Dave Mark show iPhone developers how to master all of the iPad-exclusive frameworks and features, which are explained, demonstrated in action, and put through their paces in this comprehensive programming guide. You’ll get a detailed understanding of the new feature set and gain every possible advantage in the iTunes App Store.

What you’ll learn

  • How to design app interfaces optimized for the iPad by taking advantage of new UIKit features such as Popovers, Split View Controllers, and new Modal Views.
  • How to utilize new graphics functionality, Core Text, Document Sharing, and advanced input methods to build powerful productivity solutions.
  • How to embrace the iPad’s superior media capabilities with its new video and display options.
  • How to convert an existing iPhone project into a stand-alone iPad app or a Universal app for both iPhone and iPad users.

Check out a preview on Google Books

Posted in Code | Tagged book, intermediate, ipad | Leave a comment

Loren Brichter Patented ‘Pull to Refresh’ — Granted just a day before Twitter acquired his company and Tweetie app, it’s unclear if it was part of the deal, but this puts an interesting spin on the recent Facebook/three.20 source code mishap. 8/20/10

iOS 4 Video Playback Using AVFoundation With NGMoviePlayer

NetNewsWire and TapLynx developer Brent Simmons wrote his own movie playback controller class based on AVFoundation to deal with an iOS 4 bug where an embedded MPMoviePlayerController can freeze in a UIWebView. Full source for NGMoviePlayer plus sample project is available on bitbucket.

Oh, and a gold star for using Blue’s Brothers for the sample clip, Brent.

Posted in Code | Tagged video | Leave a comment

Facebook Responds to Pull to Refresh Allegations — Jeff Verkoeyen, project maintainer on the three20 framework that the new Facebook app’s ‘pull to refresh’ feature was built on explains that the EGOTableViewPullRefresh based code was merged in from another developer’s code and that they are adding attribution and reached out to that developer for further questions. Facebook’s open source program head David Recordon  also joins in on the comment thread and agrees with the origins of the pull to fresh implementation. Further discussion on Hacker News. 8/19/10

Goodie Roundup – August 19th, 2010

Interesting iPhone and iPad development, design or even marketing items. Often new, sometimes old.

Have a goodie to share? Send it in!

Posted in Goodie Roundup | Leave a comment

Apple’s App Store Director Sells His Own Fart Apps — After Wired broke the story, Phillip Shoemaker, director of applications technology at Apple, who ‘runs the App Store process’ and has published a number of animal fart urination apps, purged his Twitter account and edited references to his app business name from his LinkedIn profile. Apple reports that Shoemaker developed and published these apps before he joined the company. 8/19/10

Color Stream: a Free iPhone App For Web Designers — Smashing Magazine orchestrated the free release of Sahil Lavingia‘s Color Stream, an iPhone app that will generate color schemes from scratch or based on photos on your photo library. Great for web designers, also useful for developers who want to give their apps a different color scheme to stand out. 8/18/10

Extract Color Declarations From Mockups With Custom Color Picker

Developer Color Picker, by Wade Cosgrove is a custom color picker specifically designed for programmers. Drop it into your Library/ColorPickers folder, and now any image editor that uses color pickers allows you to copy source code snippets for specific colors, straight out of your mockups, with or without a declaration:

// NSColor
[NSColor colorWithDeviceRed:0.074 green:0.778 blue:0.000 alpha:1.000]
NSColor *aColor = [NSColor colorWithDeviceRed:0.074 green:0.778 blue:0.000 alpha:1.000];

// UIColor
[UIColor colorWithRed:0.074 green:0.778 blue:0.000 alpha:1.000]
UIColor *aColor = [UIColor colorWithRed:0.074 green:0.778 blue:0.000 alpha:1.000];

// CGColor
CGColorCreateGenericRGB(0.074, 0.778, 0.000, 1.000)
CGColorRef aColor = CGColorCreateGenericRGB(0.074, 0.778, 0.000, 1.000);

// Hexadecimal, RGB
#13c600
rgb(19, 198, 0)

Custom Color Picker

(via on Joel Levin Twitter)

Posted in Design | Tagged images, prototyping | Leave a comment