I'm try to reset frame's height after zoom, but tableview setFrame does not working. How to reset UITableView's height?
My Code as follows:
CGRect rectFrame = self.frame;
CGAffineTransform affineMatrix = CGAffineTransformMakeScale(0.5, 0.5);
affineMatrix = CGAffineTransformTranslate(affineMatrix, appSize.width, 120);
self.transform = affineMatrix;
[self setFrame:CGRectMake(rectFrame.origin.x, rectFrame.origin.y, rectFrame.size.width, 900)];
self is UITableview.