Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created UIButtons in UITableViewCell. It is displaying properly in iphone. But when I upgrade this app for iPad UIbuttons are shifted to right side and come out of the table's boundary . Here is my code

UIButton *button2 = [UIButton buttonWithType:UIButtonTypeCustom];
[button2 setFrame:CGRectMake(47.0f, 100.0f, 16, 16.0f)];

[button2 setImage:[UIImage imageNamed:@"Delete.png"] forState:UIControlStateNormal];
[button2 addTarget:self action:@selector(delete:) forControlEvents:UIControlEventTouchUpInside];
[cell addSubview:button2];



return cell;
share|improve this question

2 Answers

up vote 2 down vote accepted

You should probably add the button to the cell's contentView, and not to the cell directly.

You might also want to place the button's frame origin relative to the contentView's frame size, + set the button's autoresizing mask so that it is placed properly according to the cell size (which can change based on device type and/or interface orientation).

share|improve this answer
Thank you..It is displaying properly – iProgrammer May 7 '11 at 8:02

Please try this one. In you code remove [cell addSubview:button2]; add write there [cell.contentView addSubview:button2]; and also for removing overlapping of cell or for removing disturb buttons frame add this for loop before all cell content view allocated.

for(UIView *view in cell.contentView.subviews)

{

[view removeFromSuperview];

}

then you can add here uibuttons uilabels , etc...

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.