Tag Archives: Objective-C

First Peek: “Squadron Leader” for iOS7

First alpha demo of new iOS game -- Of course in the real game, you will die... unless I make Space Leeches!
Posted in Games, iPhone Apps, Vector-Z: Space Ranger | Tagged , , , , , , | Leave a comment

Drawing Text on an Arc in CocoaTouch

CoreText is available now in iOS, but it’s not an easy framework to use. After trying several other approaches to draw text on an arc at this Stack Overflow page,  I adapted Apple’s sample code  CoreTextArcCocoa for Mac class for …

Posted in iPhone Development, Programming | Tagged , , , , | Leave a comment

How to get the Return key to dismiss a UITextView

Need to dismiss they keyboard in a UITextView? Changing the Return key to read “Done” doesn’t make the iPhone keyboard to go away.  Put this code in the delegate for your UITextView and your return key can behave more like …

Posted in iPhone Development, Programming | Tagged , , | 3 Comments

plist > JSON > XML

Having developed 4 or 5 iPhone apps now that download remote XML data from servers and populate tables view and other content, I can tell you without reservation that it is the slowest way to go.

Performance using JSON is …

Posted in iPhone Development, Programming | Tagged , , , , , | Leave a comment

How To Place a UIWebView inside a UIScrollView

To display several pieces of content on a screen, I needed several views. A scroll view (UIScrollView) was necessary to encompass the headline, photo and story text; I had the headline and photo at the top in a …

Posted in iPhone Development, Programming | Tagged , , , , | 15 Comments