The title pretty much explained it. Is it possible? I have tried to assign it like this:
UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(saveAnnotation:)];
pinView.leftCalloutAccessoryView = leftButton;
I have also tried casting it as a UIButton and as a UIView. The main reason I want this is because I want that little savebutton already intergrated in UIBarButtonSystemItemSave. How may I achieve this?