trying to programmatically create rightBarButtonItem

iphone, uibarbuttonitem

Solution

I would normally put this code in the `viewDidLoad` method rather than the `awakeFromNib` method; I'm not sure if that's where your problem lies. What does "not working" mean?

Problem

This doesn't seem to be working. What am i doing wrong? ``` -(void)awakeFromNib{ UIBarButtonItem *rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showNewEventViewController)]; self.navigationItem.rightBarButtonItem = rightBarButtonItem; NSLog(@"awaked"); [rightBarButtonItem release]; } ```

Original source