Home >> Blog

iHwy Development Blog

The iHwy team shares their musings about their development experiences.

Xcode iPhone OS 3.0.1 Error

Posted on August 28, 2009 16:39 by Mark

I recently upgraded my phone to 3.0.1 and it broke my development environment.

"The version of iPhone OS on Mark Dev iPhone does not match any of the versions of iPhone OS supported for development with this copy of Xcode. Please restore the device to a version of the OS listed below. If necessary, the latest version of Xcode is available here."

OS Installed on Mark Dev iPhone is
3.0.1 (7A400)

Damn.

Fortunately, another developer on our team download the latest Beta SDK and it corrected the problem so I knew there was a solution. But I didn't want to download another 2GB of SDK and poked around a little to see if there was another solution.

The device builds on my machine are located here: /Developer/Platforms/iPhoneOS.platform/DeviceSupport/

I noticed there were other entries that were only links. For example, I have a 2.1.1 pointing to 2.1 so I thought I would do the same.

ln -s 3.0\ \(7A341\) 3.0.1

It works!


So many sucky web applications, so little time!

Posted on August 12, 2009 13:09 by Mark

[No text]


New versions of our jQuery listnav and listmenu plugins are now available:

http://www.ihwy.com/labs/jquery-listnav-plugin.aspx
http://www.ihwy.com/labs/jquery-listmenu-plugin.aspx

What's new:

ListNav plugin

1. added an includeOther option to provide a top level '...' nav link to access items that start with chars other than A-Z and 0-9. For example, chars like Ä and Ü.

2. added a prefixes option to provide a way to show "The New York Times" under T and N. Pass in your own prefix array.

See the new demo 6 here for examples of both:

    http://www.ihwy.com/labs/Demos/Current/jquery-listnav-plugin.aspx

ListMenu plugin

1. added an includeOther option, just like the one for the ListNav plugin.

2. added an onClick option that simplifies handling clicks in the dropdown menu (for things like pulling an href out of the clicked link to use it for an ajax call). The onClick uses event delegation, so is low overhead and the clicked object is available as a jquery object in your onClick function.

See demo 3 here for includeOther example and demo 6 for onClick example:

    http://www.ihwy.com/labs/demos/current/jquery-listmenu-plugin.aspx

Some of these features were based on user requests from the jQuery community. Thanks to everyone for the feedback!