Notes from Bordertown Labs with posts regarding software development for the iPhone, Ruby on Rails, tips and code.
» Contact with inquiries.
Visualize your geodata in augmented reality with 3DAR by Spot Metrix. |
(via Apple approves JavaScript iOS games that don’t use a browser)
“They don’t use PhoneGap or Titanium. They don’t even use a UIWebView. Instead, they bypass the iPhone’s browser altogether and use Apple’s JavaScript interpreter (JavaScriptCore) directly. All graphics are rendered with OpenGL instead of in a browser window and all sound and music is played back with OpenAL,” Szablewski says.
(via Alex Vollmer — Working with UIAutomation)
(via Splashscreens / iOS UI Patterns (beta))
Very helpful for screen design inspiration.
iPhone, iOS 4, iPad SDK Development Tutorial and Programming Tips
iPhone, iOS 4, iPad SDK Development Tutorial and Programming Tips
The iPhone Development Wiki has a very nice listing of private animations which are available but not necessarily acceptable by Apple.
Here’s how to show the coveted iris animation.
I recommend setting the duration to INT_MAX and taking a screenshot of the closed iris and then throwing that into a UIImageView to display before the animation begins, then hide the image right after starting the animation.
CATransition *animation = [CATransition animation];
animation.delegate = self;
animation.duration = 0.33;
animation.timingFunction = UIViewAnimationCurveEaseInOut;
animation.type = @"cameraIrisHollowOpen"; // Or cameraIrisHollowClose, cameraIris
[someContainerView.layer addAnimation:animation forKey:nil];
Public Art PDX | Exploring Portland’s Public Art
Public Art PDX is a free app for the iPhone, iPad and iPod Touch that showcases the rich and diverse collection of Public Art on display in and around Portland, Oregon, USA.
AT&T versus Verizon iPhone usage comparison.
Data is based on iPhones across the Chitika advertising network. Only traffic on cellular connections is recorded. Percentages are a 24-hour rolling average, updated hourly.
Among other things I find his logging tips helpful.