I am stuck in a small problem,
I dynamically create a UIBarButtonItem using this code..
UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:@selector(didSelectPopitDownFromNavBar:)];
self.navigationItem.rightBarButtonItem = rightButton;
and the selector method is this..
-(IBAction)didSelectPopitDownFromNavBar:(id)sender event:(UIEvent *)event
so it gives a crash on click.. how can i pass this event..?