iPhone Ad Hoc distribution for application beta testing

Apple’s Ad Hoc distribution process is a godsend for iPhone beta-testing, but a right pain to use in practice.  I’ve tried several different approaches for creating and managing Ad Hoc testing; this article describes the one I now use for my National Rail Enquiries for iPhone application. (A note before we get started: This article assumes some pre-knowledge […]

Read More
Core Location extensions for bearing and distance

As part of a recent iPhone project, I needed to find a point at a certain distance from one location in the direction of a second location.  I found the formulas I needed on Movable Type Ltd’s scripts page, and converted these into the appropriate Obj-C code to run on an iPhone using the iPhone SDK. I’m posting […]

Read More
An alternative interface for filtering on the iPhone

I’m developing a new iPhone application. Part of the application needs a “filter a list of things” view. I’ve been looking at Apple’s approach for inspiration, most notably the Contacts application. I’ve come to the conclusion that the Contacts approach absolutely sucks, and so I’ve developed my own custom interface instead. This article describes the […]

Read More
Stripping out a set of characters from an...

Cocoa’s NSString doesn’t have great support for search and replace at the best of times. But the absence of the NSPredicate class from the iPhone SDK means that there is no quick way to strip a whole range of characters out of an NSString in one go on the iPhone. This article shows one way to do so. Control […]

Read More
Distance function for sqlite

As part of an iPhone SDK project, I have an sqlite database with a table full of geographic locations, each stored as a latitude and longitude value in degrees. I wanted to be able to perform an SQL SELECT on this table and ORDER BY each row’s distance from an arbitrary point. I’ve achieved this […]

Read More
How to send photo using Skype for iPad

New verion of Skype for iPad announces the feature of sending photos. But how? It is very simple. You just need to start the Skype conversation with somebody, press the PLUS button [+] at the right top corner of the conversation window and choose the menu item allowing you to send photo to the Skype […]

Read More