Recent Posts
ericd.net
Return To Blog Listing
Personal blog/resource of Flash/interactive technology and source code.
Recent Posts Tagged With 'xcode'
iPhone: Easy step through presentation application
This does not account for left and right swiping, but it could be added easily. Have a bunch of photos that you'd like to show someone in a presentation? Perhaps mock-ups of layouts, etc. This bit can really help you along. I wrote this quickly but i...
How you target 2.x with the 3.0 SDK...
If you are using the 3.0 iPhone SDK, you'll notice that by default Xcode only shows you 3.0 as a target (Simulator and device). Before you were able to target all the SDKs you had installed. I personally don't worry about this default behavior, but w...
Xcode: Uncaught exceptions with breakpoint!
While developing for the Mac or the iPhone, you're going to bump heads with the TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION a bit. While this is nominally useful information, you never are told where the exception happened, only the reason that it did. If ...
Getting columned data in a UITableView
Since I'm still fairly green to this whole Objective-C thing and I am still learning the APIs that are available (there are a billion of them), I don't always know how to do exactly what I want to do. A case in point... I wanted to present a high sco...
Sending an email from an iPhone application
This certainly is not the most secure way of sending an email by any means, but it does work. So you would like your iPhone application to be able to send an email - perhaps a feedback form of some kind, etc. The example supplied here contains a UITe...
Custom buttons for your Objective-C applications
You have a few choices (that I know of right now) for making custom versions of your buttons for an Objective-C project in InterfaceBuilder (iPhone). You can turn your UIButton into a custom type, and use a background image... however you're locked i...
A big difference between Objective-C and AS3
Objective-C. String comparisons from text controls and normal strings. It's something you just take for granted in AS3.myText_txt.text = "Hello";if( myText_txt.text == "Hello" ){ trace("There");}Easy enough on that string comparison. I thought it wou...
Xcode: get alphabetized methods all the time
After a bit of chatter with an Apple forum administrator, I found a way to get Xcode to do what I want in regards to it's method popup menu.Quick overview:I like using TextMate on the Mac for ActionScript 3 coding (it's not FlashDevelop, but it's pre...
