I'm trying to load a view controller contained within a referenced library as well as a separate asset bundle. In order to do this, I believe I need to use the method initWithNibName. I have added the following additional mtouch arguments:
-v -v -v -gcc_flags "-L${TargetDir} -F${TargetDir} -F${ProjectDir} -F${TargetDir}/Test.embeddedframework -framework Test"
This Objective-C snippet does exactly what I need to do:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSBundle *myBundle = [NSBundle bundleWithPath:[NSString stringWithFormat:@"%@/Test.embeddedframework",[[NSBundle mainBundle] bundlePath]]];
NSString *nib = [myBundle pathForResource:@"TestViewController" ofType:@"nib"];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:myBundle];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
From within MonoTouch, I've been able to load compile bindings and load the asset bundle. But I'm unaware of how to send the message 'initWithNibName'. The API docs are not complete for this method, but show a constructor on UIViewController that will accept a nib name and bundle. However, this does not appear to be included in the generated DLL.
Does anyone have any experience with doing something like this or have any suggestions as to how it can be accomplished?