Recent Posts

ericd.net

ericd.net

Return To Blog Listing

Personal blog/resource of Flash/interactive technology and source code.

Search This Blog's Tags For:

Recent Posts Tagged With 'xcode'

  • iPhone: Easy step through presentation application

    Posted on Friday July 10th, 2009 at 14:21 in iphone, xcode, objective-c

    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...

    Posted on Monday June 29th, 2009 at 20:04 in xcode

    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!

    Posted on Thursday May 28th, 2009 at 08:54 in xcode, exceptions, breakpoints

    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

    Posted on Wednesday May 6th, 2009 at 10:12 in cocoa, xcode, objective-c, uitableviewcell, 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

    Posted on Thursday April 16th, 2009 at 08:36 in email, xcode, objective-c

    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

    Posted on Monday April 13th, 2009 at 08:37 in xcode, uibutton

    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

    Posted on Thursday April 2nd, 2009 at 17:12 in xcode

    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

    Posted on Wednesday April 1st, 2009 at 21:12 in xcode

    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...