TweetFollow Us on Twitter

Tiger Time

Volume Number: 21 (2005)
Issue Number: 5
Column Tag: Programming

Tips From Big Nerd Ranch

Tiger Time

by Aaron Hillegass, Chris Campbell, and Marquis Logan

For this special Tiger issue, it seems appropriate to pass on a few tips that may help as you move your development efforts to Mac OS X 10.4.

All-In-One

Xcode 2 has several nifty new features, but our absolute favorite is "All-In-One Layout." In previous versions of Xcode, if you had a few projects open and each project had a build panel, a run log, a debugger panel, and an editor window, you were quickly lost in a sea of windows. In Xcode 2, all of these functions can be done in a single window. To experience the pure joy of All-In-One, you must close all your projects and open the General Preferences:


Figure 1.

When you open a project, there will be a segmented controller labeled Page on the left end of the toolbar:


Figure 2.

There are three pages:

    The editor page handles editing, project search, and revision management.

    The build page handles the building, the build log, and the run log.

    The debug page handles debugging.

If you often work with several projects simultaneously, this will make your life a much more pleasant place.

Backwards Compatibility

If only users would update immediately to Tiger, we would not have to worry about backwards compatibility. The most common source of backwards compatibility issues is inadvertent use of new Tiger APIs. This will prevent your application from running on 10.3. There are two good solutions to the problem.

    Solution 1: Use the 10.3 SDK (or 10.2 if needed) for apps that should only use Panther APIs.


Figure 3.

This will cause the application to link against stub libraries that match the APIs available on 10.3.

    Solution 2 (our favorite): Use the "Current Mac OS" SDK to take advantage of all the latest APIs on the current system:


Figure 4.

and set the "Mac OS X Deployment Target" in the target build settings to 10.3:


Figure 5.

This causes the newer APIs to be weak-linked into the application. It requires a little additional work by the developer to check the availability of an API in the code and gracefully handle cases where API is missing (running on an earlier version of the OS).

C function symbols need to be checked if their value is valid:

if (CGContextFillEllipseInRect != NULL)
{
   CGContextFillEllipseInRect(context, rect);
} else {
   // Older OS version actions
}

Objective-C methods can be detected using -[NSObject respondsToSelector:]


if ([tableView respondsToSelector:@selector(setColumnAutoresizingStyle)])
{
   [tableView setColumnAutoresizingStyle:NSTableViewLastColumnOnlyAutoresizingStyle];
} else {
   // Older OS version actions
}

This is the most powerful solution as it allows the developer to take advantage of the latest features while maintaining the broadest compatibility.

See Apple's documentation on cross development for more details:

http://developer.apple.com/documentation/DeveloperTools/Conceptual/cross_development/index.html

Debugging Bindings

There have been many complaints that bindings are difficult to debug. This is sadly still true, but Apple has begun to make things easier for us. There is now a default NSBindingDebugLogLevel. Set it to 1 to turn on logging. The easiest way is to pass it as an argument on the command-line. Under the Executables group in Xcode, select your application, and look at the info panel. Add the argument -NSBindingDebugLogLevel 1.


Figure 6.

In the short time that we have been using Tiger, we have found it to be a superior platform for developers. It is chock-full of fun new technologies and is even more beautiful than 10.3. Enjoy!


Aaron Hillegass, Chris Campbell, and Marquis Logan

 
AAPL
$560.80
Apple Inc.
-4.52
GOOG
$593.50
Google Inc.
-10.16
MSFT
$29.23
Microsoft Corpora
+0.16
MacNews Search:
Community Search:
view counter

view counter
view counter
dockXtender
view counter
view counter
view counter
view counter
view counter
view counter

13 Year-Old Releases First App, Mad Pigs
Last month, I reported on a 15 year-old developer releasing his first game (Patrick Balestra and Catch the Airplanes). This month, we found a developer a full two years younger releasing his first game! Jack McGraw, 13 year-old developer, has just released his first app, Mad Pigs. | Read more »
Samplodica Review
Samplodica Review By Angela LaFollette on May 25th, 2012 Our Rating: :: MUSICAL MAYHEMiPhone App - Designed for the iPhone, compatible with the iPad Samplodica is an intuitive musical instrument that is played by whipping the iPhone in the air.   | Read more »
Empire of the Eclipse Review
Empire of the Eclipse Review By Carter Dotson on May 24th, 2012 Our Rating: :: OVERSHADOWINGiPhone App - Designed for the iPhone, compatible with the iPad Empire of the Eclipse is an ambitious strategy MMO that is very deep, and aimed at dedicated players.   | Read more »
Bejeweled HD Review
Bejeweled HD Review By Jennifer Allen on May 24th, 2012 Our Rating: :: ADDICTIVEiPad Only App - Designed for the iPad The iPad version of the ever addictive Match Three title.   Developer: PopCap Price: $3.99 Version Reviewed: 1.2 Device Reviewed On: iPad 2 | Read more »
Facebook Releases New Camera App To Stre...
While not a replacement for Instagram, Facebook Camera is a good first step in this month+ old union of the two companies. Released today, Facebook camera looks to streamline the viewing of photos and the uploading of them. The app allows you to apply simple filters to images, tag people, upload multiple images at once, and post a note about the... | Read more »
Missile Monkey Review
Missile Monkey Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FLYING LOWUniversal App - Designed for iPhone and iPad Missile Monkey is a must miss   Developer: Munsey Clan Games Price: $0.99 Version Reviewed: 1.0 Device Reviewed On: iPad 2 | Read more »
Boomlings Review
Boomlings Review By Lisa Caplan on May 24th, 2012 Our Rating: :: FUN FREEBIEUniversal App - Designed for iPhone and iPad Boomlings is a traditional matching puzzle game, with some explosive twists   | Read more »
Dave vs Cave Review
Dave vs Cave Review By Jason Wadsworth on May 24th, 2012 Our Rating: :: WATCH FOR FALLING ROCKSUniversal App - Designed for iPhone and iPad Kid falls down hole, kid gets trapped in cave, kid fights evil rock monsters to escape.   Developer: Origame64 | Read more »
Python Pocket Power: Python Bytes 3 – Mo...
Python fans are certain to welcome the best bits from the penultimate season of the BBC sketch comedy in a new iPhone app: Python Bytes 3 – Monty Python Series 3. If you have a flair for the obvious, you’ll correctly assume this is third in a series of apps that feature the best skits from the cult-classic, Monty Python’s Flying Circus. | Read more »
Slingshot Racing Review
Slingshot Racing Review By Carter Dotson on May 24th, 2012 Our Rating: :: SWING ME AROUNDUniversal App - Designed for iPhone and iPad Slingshot Racing is a racing game where players must race around the courses by grappling and swinging around the slippery courses.   | Read more »
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.