Rotate a custom UITableViewCell
Posted
by Wayne Lo
on Stack Overflow
See other posts from Stack Overflow
or by Wayne Lo
Published on 2010-03-19T12:40:09Z
Indexed on
2010/03/19
12:41 UTC
Read the original article
Hit count: 560
I have a custom UITableViewCell which contains several UIButtons. I set autoresizingMask=UIViewAutoresizingFlexibleWidth so it will adjust the width properly when the application starts with the device either in landscape or portrait mode. The issue is when the device is rotated, the buttons do not adjust its position based on the because the UITableViewCell is reusable. In other words, the cell is not initialized based on the new UITalbeView width because the cell's function initWithStyle is called before the device is rotated and is not called again after the device rotation. Any suggestions?
© Stack Overflow or respective owner