- (void)setRightBarButtonItemImage:(UIImage *)image sel:(SEL)sel
{
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, image.size.width/2, image.size.height/2)];
[button setImage:image forState:UIControlStateNormal];
[button addTarget:self action:sel forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:button];
self.navigationItem.rightBarButtonItem = item;
}