Discussion Forums  >  Plugins, Customizing, Source Code

Replies: 3    Views: 67

Jake Chasan
Veteran developer
Profile
Posts: 1685
Reg: May 13, 2011
location unknow...
29,650
02/02/14 09:34 AM (11 years ago)

SOLVED: Email Not Loading BT3.0

Hi Everyone, I have solved the problem of the send email plugin not working with BT3.0. In BT_viewController.m, go to line 1258: //show it [theViewController.navigationController presentModalViewController:picker animated:YES]; Replace it with: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //tabbed app's handle pushing views different than non-tabbed apps... if([appDelegate.rootApp.tabs count] < 1){ //non-tabbed app, ask rootApp's view controller to push the next view... [appDelegate.rootApp.rootNavController presentViewController:picker animated:YES completion:nil]; }else{ //ask the navigation controller for the selected tab to push the next view... BT_navController *selNavController = (BT_navController *)[appDelegate.rootApp.rootTabBarController selectedViewController]; [selNavController presentViewController:picker animated:YES completion:nil]; } picker.mailComposeDelegate = self; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Does this help? Jake
 
shak77
buzztouch Evangelist
Profile
Posts: 399
Reg: Jan 18, 2011
location unknow...
7,240
like
02/02/14 09:53 AM (11 years ago)
Hi Jake, Didn't work for me. The send email plugin still doesn't load. It worked for you? David
 
Jake Chasan
Veteran developer
Profile
Posts: 1685
Reg: May 13, 2011
location unknow...
29,650
like
02/02/14 11:41 AM (11 years ago)
What plugin are you launching it from? Jake
 
shak77
buzztouch Evangelist
Profile
Posts: 399
Reg: Jan 18, 2011
location unknow...
7,240
like
02/02/14 11:43 AM (11 years ago)
Menu Simple
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.