Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

im needing help with dismissing delegates, read up on some of the past issues but cant find a solution.

In my popover.h file i have

@protocol MyPopoverDelegate <NSObject>
-(void)didClickButton;
@end

@interface PopoverViewController : UIViewController{


}

@property (nonatomic, assign) id <MyPopoverDelegate> delegate; 

@end

in the popover.m file i have

@synthesize delegate;

-(IBAction)Small:(id)sender{


[self.delegate didClickButton];

}

in the viewcontroller where popover is actioned .h file i have

#import <UIKit/UIKit.h>
#import "popover.h"

@interface ViewController : UIViewController <UIPopoverControllerDelegate, MyPopoverDelegate> {

UIPopoverController *popoverController;

}

@property (nonatomic, retain) UIPopoverController *popoverController;


@end

and finally in the view controller.m file i have

#import "PopoverViewController.h"

@interface ViewController (){

//Colour Popover
PopoverViewController *controller;



}

@synthesize popoverController;



-(void)didClickButton{



[popoverController dismissPopoverAnimated:YES];

}

What am i missing? The app runs fine, popovers popup fine, but when the button is pressed on the popover, the delegate doesnt work, ie nothing happens.

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.