I'm using custom UIViews to as navigationBarItem (like Facebook does it in their iOS app).
UIImageView *linkesMenu = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"187menu.png"]];
UIBarButtonItem *barItem = [[UIBarButtonItem alloc] initWithCustomView:linkesMenu];
barItem.action = @selector(MenuSlider:);
self.navigationItem.leftBarButtonItem = barItem;
I tried this and a couple other things but nothing works really.