Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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. enter image description here

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];
share|improve this question
Can you show us what you tried and didn't work out? – Mihai Fratu Jul 18 '12 at 12:06
You are use custom cell or Default TableView? – Jay Patel Jul 18 '12 at 12:10
i try this [nameLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth]; [[cell contentView] addSubview:nameLabel]; – deck john Jul 18 '12 at 12:10
@MitalSolanki i edit my Que. – deck john Jul 18 '12 at 12:14
@MihaiFratu i edit my Que. – deck john Jul 18 '12 at 12:14
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.