i have created iOS module with XIB which is imported in Titanium project ...where i placed my XIB in Assets and class for that XIB in class folder and when i run my titanium project it is showing error
as
Ld build/Debug-iphonesimulator/hello.app/hello normal i386
i aslo write this code
-(void)startup { // this method is called when the module is first loaded // you must call the superclass [super startup];
ENSURE_UI_THREAD(OnMainUI, nil);
}
- (id) OnMainUI { data *controller =[[data alloc] init]; [[TiApp app] showModalController: controller animated: YES]; } to load XIB..
plz help me some one to solve this issue...