i am very new in iPhone development so i don't how it's possible to decrease the size of Delete button so it will fixed in cell. i find some solution but not able to understand how to implement it. plz give some of code with explanation or any sample , tutorial appreciated.

here is my table view code
bottleTableView=[[UITableView alloc] initWithFrame:CGRectMake(-5, 5, 320, 145) style:UITableViewStyleGrouped];
bottleTableView.delegate=self;
bottleTableView.dataSource=self;
bottleTableView.backgroundColor=[UIColor clearColor];
bottleTableView.backgroundView.alpha=0.0;
bottleTableView.separatorColor=[UIColor clearColor];
bottleTableView.tag=1;
[bottleTableView setAutoresizesSubviews:YES];
[self.Tableview addSubview:bottleTableView];
[bottleTableView release];