blazeman wrote:Not sure why, but my default.png (or Default.png) in my "other sources" isn't working on my 3.0 or when I tell it to use device 2.2.1
I have tried both Default and default as the file name. Neither seem to work for me.
As of right now the rest of my app is working fine.
I've been testing this on the rado application that can be downloaded here on this site and it's working perfect. You can even put a sleep command in the "VDJRadioAppDelegate.m" (example) to let it stay longer. See example:
- Code: Select all
#import "VDJRadioAppDelegate.h"
#import "Nimble.h"
@implementation VDJRadioAppDelegate
@synthesize window;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
sleep(15); THIS IS THE EXTRA COMMAND FOR LET THE APP SLEEP A CERTAIN TIME
Nimble *nimble = [[Nimble alloc] initWithRootPage:@"main.html" window:window serial:@""];
[window addSubview:nimble.view];
[window makeKeyAndVisible];
[nimble release];
}
- (void)dealloc {
[window release];
[super dealloc];
}
This is working with version 2.2.1 and 3.0.