حمضيات (Taken with instagram)
“Actually, Sheldon Has Better Design.”
If you’re an iOS developer, and love the sitcom The Big Bang Theory, then you have to watch season 4 episode 12: The Bus Pants Utilization (original air date is January 6, 2011.)
In this episode, Leonard comes up with an idea for his iOS app and derails his friendship with Sheldon.
What’s the App?
It’s a handwriting-recognition based equation solver, or in Sheldon’s way: “The Surprisingly Helpful Equation-Linked Differential Optimized Numerator.” The idea behind this is to use iPhone’s camera to take a picture of the equation, and scan it with handwriting recognition, then run it through a symbolic evaluation engine, and bam.
Learning Cocoa
During the episode, they show several actual Objective-C code snippets and interesting design sketches on white boards, here are some of them:
They have a
CRecognitionobject holds anUIImageinstance variable, and sadly they name it_Photo(with underline as prefix), it’s not the naming convention Apple suggested.
The next morning, Sheldon starts his own design, if you look closer, it’s much more considered than Leonard’s.
For example, since this is an utility app, Sheldon comes up with a flip view design that similar to built-in Camera/Stocks app. A full screen
SPhotoViewwith a snapshot button in the middle, and on the other side, it’sSEquationViewand aUITableViewat the bottom with some buttons.
In here, you can see more details. A
UITableViewholds the scanned equations, and supports rotation for landscape full screen detail view and portrait detail view. On the right side, Sheldon shows better understanding aboutUIViewController’s view hierarchy design concept.
Later, Leonard’s team is doing some reference counting. Instead of accessing instance variable directly in
-initWithPhoto:and-dealloc, they decide to use retain propertyself.photo, with class method to return a autoreleasedCRecognitionobject, and claim there’s no leaks.What a mess, you should always use instance variable directly in
-initWithPhoto:and-deallocwhen creating/releasing instance object.
Here you see Leonard’s app class hierarchy, mostly MFC-ish (thanks, @lukhnos.) style naming convention for the class names, almost everything starts with letter “C” (is for “Class” I think),
CAppDelegate,CMainView,CCameraView,CSymbolicView, etc. They should use prescribed prefix like “LRH,” which means Leonard, Rajesh and Howard.
The beautiful Penny is next to Sheldon, and there’s Facebook API on the white board.
In the end, Penny’s shoes app project. There’re many of them on the AppStore already, and the UI design for this one looks kinda lame.
And Sheldon is working on this project… (for customer from hell?)
Conclusion
I love and enjoy this episode a lot, and the TBBT crew does a great job for all these minor details, they look very convincing to me.
But, they should use Mac when doing the coding, I only saw Raj’s MacBook Pro, and rest of them are using PCs. That’s not right, you can’t run Xcode on PC, well, unless they all use Hackintoshes…
Also, If you want to hire someone for your iOS app project, I highly recommend Sheldon Cooper.
References
- The Big Bang Theory: 4x12 The Bus Pants Utilization
- Apple: Introduction to Coding Guidelines for Cocoa
- [digdog dig]; - To nil, or not to nil, that is the question
tumblrbot asked: WHAT IS YOUR FAVORITE INANIMATE OBJECT?
What does inanimate mean ?


They have a
The next morning, Sheldon starts his own design, if you look closer, it’s much more considered than Leonard’s.
For example, since this is an utility app, Sheldon comes up with a flip view design that similar to built-in Camera/Stocks app. A full screen
In here, you can see more details. A
Later, Leonard’s team is doing some reference counting. Instead of accessing instance variable directly in
Here you see Leonard’s app class hierarchy, mostly MFC-ish (thanks,
The beautiful Penny is next to Sheldon, and there’s Facebook API on the white board.
In the end, Penny’s shoes app project. There’re many of them on the AppStore already, and the UI design for this one looks kinda lame.
And Sheldon is working on this project… (for customer from hell?)