Apple

iOS DFU Mode

Posted by Dallas on February 12, 2013
Apple, iOS, iPhone / No Comments

Wow, this post is 1-day shy of being 1 year from the last post.
Sorry about that…

I just put together instructions for someone about going into and using DFU mode on an iOS device, so I thought I would post it here as well.

—–

DFU (Device Firmware Upgrade) mode is a low level mode that 99% of users should/will never know about or need, however there are cases where it can be an invaluable debugging resource.

There are a couple of scenarios where you might find this mode helpful, for example:

If the iPhone/iPad gets stuck in a reboot sequence (constantly reboots), simply enter DFU mode and then rebooting can often fix this.
Another time would might want to use DFU mode is if you are having issues with upgrading the firmware on a device.
DFU mode can give you the ability to have more control over the firmware process, however it does take more work.

Entering DFU mode can sometimes be tricky, especially if you are new to doing it.
Don’t worry if you don’t get it right, it won’t break anything.
Just wait for the device to finish starting up normally and then try again.

Below I will give instructions on how to enter DFU mode, and then below that I will include the process to “fix” the two scenarios I listed above.

DFU Mode Instructions
——–

1. Plug the iPad into your computer
2. Launch iTunes
3. Hold down the Power button and the Home button at the same time
4. Keep holding both of these buttons for 10 seconds (Your device will restart during this process, which is what it should do, but don’t release the buttons)
5. After 10 seconds pass, release the Power button but continue to hold the Home button for another 3-5 seconds
When in DFU mode, your device’s screen will stay completely black.
If you see an Apple logo or the device boots normally, you did not enter DFU mode successfully.
6. iTunes will notify you that it has detected a device in recovery mode.
Press ok.

You are now in DFU mode!

If you are trying to get out of the continual rebooting sequence, then at this point, hold the power and home buttons down again at the same time.
However this time, release both buttons as soon as the device reboots.
Your device should then boot normally.

If you are trying to fix an upgrade issue, you will need to complete a few more steps.

To continue you will need the firmware package that you are trying to update too.
There are two ways to get this firmware.

If iTunes has asked you if you want to download the update, but then you have not installed it, or have tried installing and run into issues, then the file should hopefully already be on your computer.

You will need to open a new Finder window and then press Command-Shift-G
This will bring up a little window where you can enter the folder you want to go to.
You will need to enter: ~/Library/iTunes and then press Go.
In this folder you will see several files and folders, but the ones you are interested in is one of two folders.
Either: “iPhone Software Updates” or “iPad Software Updates”
If you go into that folder you will hopefully see a file.
If you do not see a file, then you will need to follow the steps below to download the firmware.
If there is a file, check the name of the file(s) to make sure it is what you are wanting.
(Most likely there will only be 1 file and it will be correct, but it doesn’t hurt checking)

You are now ready to do the upgrade, and will want to skip this next section about downloading the firmware.

If your updates folder was empty or you are wanting a specific firmware then you will need to visit:
http://www.felixbruns.de/iPod/firmware/

Find the firmware version you are looking for either by using the direct links to the latest versions around the bottom of the page, or by using the drop down menu for the iPhone/iPad devices.
Pay special attention to which firmware you are downloading.
You must download the appropriate firmware for your device.
The main things to look for when choosing your firmware, are the version numbers, the device type (iPhone/iPad/iPad Mini), and if your device is WiFi only, or WiFi and Cellular/3G.
If your device is WiFi and Cellular then you must download the WiFi and Cellular firmware even if you do not use the Cellular functionality.
As well as above, if your device is WiFi and Cellular then you must download the correct firmware for the Carrier that your device is setup for.
The choices here are GSM or CDMA.
AT&T (and T-mobile if they get the iPhone at some point) is GSM and everything else is CDMA.

So for example if I have an iPad 3 with WiFi and Cellular with AT&T and want version 6.0.1, I would choose:
iPad 3 (Wi-Fi + Cellular, GSM) 6.0.1

Download this file.
(Depending on your browser you might need to do ‘Download File As’ if you are using one of the links)

At this point, no matter which process you went through above, you should have the firmware package you are wanting to upgrade to.
Now we will go back to iTunes, which should still be telling us that our device is in “Restore Mode” (really it is in DFU mode from the first steps we took)
iTunes should show a button called: Restore iPhone… (or iPad, etc)
If you were to click this button iTunes will simply try the install again, however for our purposes we want to Option-Click on the Restore iPhone (or iPad, etc) button.
This should bring up a standard Mac ‘Open’ window, where you need to find and select the firmware file we found or downloaded before.
Once you have found the file, select it, and press ‘Open’.

iTunes should now try and install the firmware you selected.

Please note that this is not a end-all-be-all solution.
There are times where this process will not work, for any number of reasons, however this process can be very helpful at times.

I Hope this helps.

Tags: ,

Manually Creating Universal Binaries for iOS

Posted by Dallas on January 13, 2012
Apple, Cocoa, Cocoa Touch, iOS, Mac, Objective-C, Programming / No Comments

Universal Binaries are a wonderful thing, and not just if you are still writing Mac Power PC code, they are just as useful in the iOS development world.

If you do any amount of iOS development, chances are you have used (in one way or another) a static library.
Usually when you use a static library you get (or compile) 2 versions.
One for the device, and one for the simulator.

This is fine until you want to add the library to your app.
If you are using the simulator and the device for testing you have to play a swapping game with the corresponding library version.

Wouldn’t it be easier if you could just have 1 version of the library and it worked on the device or the simulator without you having to make any changes?
Sounds nice? I would say so, and luckily it is pretty easy.

The first thing you need to do is open a Terminal window (don’t worry, its just 1 command)

Use the following command (replacing the library path and name, with your libraries information):

lipo -output <StaticLibraryUniversal>.a -create <StaticLibraryDevice>.a -arch i386 <StaticLibrarySimulator>.a

Thats it!

Just use the new static library file in your project and you can move between the device and the simulator without worry about anything!

Have fun.

Tags: , , , ,

The Complete Friday Q&A by Mike Ash

Posted by Dallas on January 27, 2011
Apple, Cocoa, Cocoa Touch, iOS, Mac, Objective-C, Programming, SDK / No Comments

Mike Ash has turned his famous Friday Question and Answer series into a book, available in either iBooks or Kindle versions.

Mike is an amazingly smart guy, who knows more about programming then you could ever imagine.

If you work with Objective-C you owe it to yourself to check out his book and his site.

Tags: , , , , ,

iDeskCal Approved for Mac App Store

Posted by Dallas on January 01, 2011
Apple, iDeskCal, Mac, Mac App Store, Programs / No Comments

iDeskCal has officially been approved for the Mac App Store!

Look for it when the Mac App Store is released on January 6th.

Tags: , ,

My Mac/iOS Setup at Work

Posted by Dallas on December 17, 2010
Apple, Fanboy, General, HashBang Ind, iDeskCal, iOS, iPhone, Mac, Personal, Programming, Programs / No Comments

Inspired by a similar post I saw today, I thought I would take a snap of my computer setup at work and share it with all of you.

I have uploaded it to Flickr with notes on what everything is, but I will attach the basics to this post.

Work Setup

This is my setup at work – Moki Networks – mokinetworks.com
All Displays powered by the iMac.

27″ iMac – 2.8 GHz Intel Core i7. 8GB RAM – Running Xcode
Samsung 27″ Monitor – Running my Mac app ‘iDeskCal’ www.HashBangInd.com/iDeskCal and Safari viewing www.philhendrieshow.com
Dell 24″ Monitor – Powered via EVGA UV Plus+ 16 (USB Display Adapter) Running iPhone 4 Simulator and Xcode Console
iPad running as a monitor using the app Air Display. Using for Mac OS Dock, Twitter (Echofon), and IM (Adium)
iPhone 4 running Safari, viewing personal Mac and iOS company HashBang Industries. HashBangInd.com
iPhone 3GS
iPhone 3G (broken screen but working)
iPod Touch – 2nd Generation
iPhone – 1st Generation
Bose QuietComfort 15 Noise Canceling Headphones
Dr Pepper!

Tags: , ,

Very Very Classy

Posted by Dallas on June 17, 2010
Apple, Cocoa, Cocoa Touch, Fanboy, iPhone, Mac, Objective-C, Programming, WWDC / No Comments

I was VERY disappointed that I was unable to make it to Apple’s WWDC (World Wide Developer Conference) this year (it was last week).

The sessions are always VERY informative, but it is also a excellent chance to not only meet with other Mac/iOS developers, but you have the chance to talk one on one with the very people who are writing the software and API’s (Application Programming Interface) that we write software for/with.

Apple does make the videos of the sessions (along with the slides) available to everyone that attends, and allows those that didn’t attend to purchase the videos.
Before last year, these videos usually took around 6 months to become available, however last year they had them released within a month.

This year Apple TOTALLY outdid themselves and have released the videos all today!
That is LESS than 1 week!
Not only did they release everything within a week, but Apple has made all of the videos and slides available to ALL registered developers (even the free developer accounts) FOR FREE!!! That is a $500 savings for those that couldn’t attend!

I only have 2 things to say…

First: Good bye to my Hard Drive space :-) (The videos are available in HD and Standard formats this year)

and Secondly… Classy Apple! VERY VERY CLASSY!

Reminder: Even though the videos did not cost this year, they are still covered under an NDA that you agree to when signing up for a developer account. Don’t make them sorry that they were so giving.

Tags: ,

Simple, Beautiful, and Elegant

Posted by Dallas on June 17, 2010
Apple / No Comments

Those are the words that come to mind when I see Apple’s latest revision of the Mac Mini.

It’s amazing how few pieces are needed.

Tags: , ,

Newsprint 1.1 is Now Available and 50% Off!

Posted by Dallas on April 21, 2010
App Store, Apple, HashBang Ind, iPhone, Newsprint, Personal, Programs / No Comments

Newsprint version 1.1 has been Approved and should start showing up in the App Store shortly!

As an extra treat we are offering Newsprint for 50% off for the next week!

So don’t delay and pick up a copy today.

For more information on Newsprint, please visit: NewsprintApp.com

To access Newsprint in the iTunes App Store, please visit: App Store

*On sale from April 21, 2010 until April 28, 2010.
*50% off is $2.99, based on the normal price of $4.99

Tags: , , ,

Newsprint 1.1 Submitted to the App Store

Posted by Dallas on April 17, 2010
App Store, Apple, HashBang Ind, Newsprint, Personal, Programs / No Comments

Newsprint 1.1 has been submitted to the App Store!

Now to get to work on the iPad version….

Tags: ,

Newsprint is now available in the App Store

Posted by Dallas on February 26, 2010
Apple, HashBang Ind, iPhone, Newsprint, Programs / No Comments

My latest application, Newsprint, is now available in the iPhone App Store!

Newsprint is a professional grade feed (RSS/Atom) reader for the iPhone and iPod touch, with support for Google Reader.

You can find more info on Newsprint at: http://www.NewsprintApp.com
You can find Newsprint in the App Store by using this link: http://www.NewsprintApp.com/download

Tags: ,