Skip to main content

Upgrade iPhone 3GS from iOS 4.2.1 to 4.3.x [closed]



Hi folks I have a iPhone 3GS at 4.2.1 and want to upgrade it to 4.3.x for testing. I have read some articles about it but it seems that those are too old and cannot work.





Does anyone have some experience in doing this or does apple provide tutorials for developers in this?





A lot of thanks.


Comments

  1. iPhone 3GS is supported by the current iOS, which is 5.0.1. You can update to that just by connecting the phone to iTunes and clicking "Update".

    You can't update to any other version but the latest. (Well, not in any officially supported capacity. It might be possible with jailbreak tools but I don't traffic in those.)

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...