NSMutableArray *leftitems = [[NSMutableArray alloc] init];
today = [[UIBarButtonItem alloc] initWithTitle:@"Today" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
today.tag=2;
cash = [[UIBarButtonItem alloc] initWithTitle:@"Cash" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
cash.tag=3;
Credit = [[UIBarButtonItem alloc] initWithTitle:@"Credit" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
Credit.tag=4;
All = [[UIBarButtonItem alloc] initWithTitle:@"All" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
All.tag=1;
Return= [[UIBarButtonItem alloc] initWithTitle:@"Return" style:UIBarButtonItemStylePlain target:self action:@selector(update_baritem:)];
Return.tag=5;
UIBarButtonItem *fixed = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
UIBarButtonItem *fixed2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[fixed setWidth:455.0f];
[fixed2 setWidth:37.0f];
[leftitems addObject:fixed2];
[leftitems addObject:Return];
[leftitems addObject:Credit];
[leftitems addObject:cash];
[leftitems addObject:fixed];
[leftitems addObject:today];
[leftitems addObject:All];
self.navigationItem.rightBarButtonItems =leftitems;