我有UITableview
哪个自定义单元格带有UIImageViews
. 在UITableview
我正在使用didSelectRowAtIndexPath
方法增加单元格的高度。我还添加了增加单元格高度并恢复到正常高度的方法。
当我点击单元格时,高度正在增加,当我再次点击单元格时(为了tableviewcell
返回到默认高度),而在过渡期间,打开的图像tableviewcell
保持如下所示并返回到默认高度。 .(我不知道图像在过渡时是如何显示的)
-(void) zoomOutProperties
{
fruitImage.frame=CGRectMake(0.0, 46.0, 320.0, 83.5);
backgroundCellImage.frame=CGRectMake(0.0, 0.0, 320.0,129.5);
customCellView.frame=CGRectMake(0.0, 0.0, 320.0, 129.5); // UIView
}