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.