I have a header file that declares two classes. The second looks like

#import <MessageUI/MessageUI.h>
#import <MessageUI/MFMailComposeViewController.h>

@interface MailComposerViewController : UIViewController <MFMailComposeViewControllerDelegate> 

- (IBAction)sendMail: (id)sender;

Then, in a xib file that is working just fine with the methods of the first class that i didn't mention, I just can't find the sendMail method when I try to pull It out from a TabBarButtonItem -not navigationBarButton- and give it to File's Owner as ususal. I tried to erase the (id)sender and switch IBAction for void in the declaration of the method, but non have worked. I'm just wondering what I'm doing wrong by defining two classes in the same header that point to the same xib.

link|improve this question
perhaps you should synthesize in your .m? – AmitApollo Nov 23 '11 at 16:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.