Skip to Navigation | Skip to Content



Contributing to iPhone PhoneGap - Part 1 | November 23rd, 2009

There has been a major re-factoring of the iPhone PhoneGap codebase, to better enable users to get a current version of PhoneGap to use in their projects without mucking about in the core PhoneGap code.

You can view the code here: http://github.com/phonegap/phonegap/iphone

The README has more details, and I will elaborate on it more here, especially on how contributors can add to the code.

PhoneGapLib/javascripts/core
This is where you will add/modify your javascript code for PhoneGap core. You can add more javascript files here, but make sure you update the “PhoneGapLib/Makefile” file to include the newly added javascript file. For adding the file in the Makefile, the pattern should be obvious.

PhoneGapLib/Classes
This is where you will add/modify your Objective-C code for PhoneGap core. You can add more Objective-C files here, but make sure you add it to the PhoneGapLib Xcode project also.

PhoneGapLib/javascripts/phonegap.js
This is dynamically generated, and is generated whenever PhoneGapLib is built. You can update this file by running “make” in the PhoneGapLib folder, but generally it should be called in your application that includes PhoneGapLib (which the PhoneGap-based Application Xcode template does).

I will walk you through how to add a new command, by adding Application Preferences support. Download the files here.

Preferences.h

@interface Preferences : PhoneGapCommand {
}
- (void) boolForKey:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
// other functions here
@end

Note that the class inherits from PhoneGapCommand. The class name you use here is important, since you will be referring to it in javascript.

To ‘expose’ a function to javascript, it must have the signature from the example ‘boolForKey’ method above (first argument is a NSMutableArray, the second argument is a NSMutableDictionary).

Let’s now look at the javascript command to access the function above.

preferences.js

function PreferencesManager() { }
var g_Preferences = new PreferencesManager();
PreferencesManager.sharedPreferences = function() {
	return g_Preferences;
}
PreferencesManager.prototype.boolForKey = function(key, callback) {
	PhoneGap.exec("Preferences.boolForKey", key, GetFunctionName(callback));
}

The important line is the “PhoneGap.exec” line. The first argument to PhoneGap.exec is in the form of <className>.<methodName> (refer to Preferences.h to see the corresponding function which should be obvious). The next arguments to PhoneGap.exec are two strings, which will be passed into the “boolForKey” method in the NSMutableArray which is the first argument. If an object (json object) is passed in as an argument to PhoneGap.exec, that data will be passed into the “boolForKey” method in the NSMutableDictionary which is the second argument.

Preferences.m

- (void) boolForKey:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
	NSUInteger argc = [arguments count];
	if (argc < 2) { // no key and/or callback - just return, no point in continuing
		return;
	}
	NSString* key =  [arguments objectAtIndex:0];
	NSString* callback = [arguments objectAtIndex:1];
	NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
	BOOL value = [userDefaults boolForKey:key];
	NSString* retVal = value ? @"true" : @"false";
	NSString* jsString = [[NSString alloc] initWithFormat:@"%@('%@', %@);", callback, key, retVal];
	[webView stringByEvaluatingJavaScriptFromString:jsString];
	[jsString release];
}

In the command itself, you can parse the arguments and options, and do whatever you need to do for your command. You can optionally write javascript back, using the method above, or the helper:

 [super writeJavascript:@"alert('foo')"] 

Next: Adding your code to PhoneGapLib.

Posted in PhoneGap | 3 Comments » | Add to Delicious | Digg It

This entry was posted on Monday, November 23rd, 2009 at 5:42 pm and is filed under PhoneGap. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

3 Responses to “Contributing to iPhone PhoneGap - Part 1”

  1. David Says:

    Hey Shazron,

    great post. Actually I have some trouble with the Preferences. Instead of the value of the key, I get back the key name as an alert.

    Any idea?

    Thanks for the great work.
    David

  2. Horatiu Says:

    Great tutorial, looking forward to see Part 2, 3,…, n as I would like to understand better what is this all about and contribute. Great Job!

  3. JJ Rohrer Says:

    Firstly - thanks for this great post - very useful!

    Although it might it might be obvious to everyone else, I figured out two things here:

    1) When you add your your custom file, say, Preferences.h, you don’t need to ‘include’ it from anywhere else. So, you won’t see #include “Preferences.h” in any other files. Pretty slick.

    2) The method signature always follows the pattern (NSMutableArray*)arguments withDict:(NSMutableDictionary*)options. Your will, too. It wasn’t just a good idea the Preference example, its PhoneGap law (apparently).

    Hope this helps someone.
    JJ

Leave a Reply


Search Posts

Archives

Categories

Get Adobe Flash playerPlugin by wpburn.com wordpress themes