-(void)viewWillAppear:(BOOL)animated{
self.cell4.frame = CGRectMake(self.cell4.frame.origin.x, self.cell4.frame.origin.y, self.cell4.frame.size.width, self.cell4.frame.size.height + 60);
self.cell5.frame = CGRectMake(self.cell5.frame.origin.x, self.cell5.frame.origin.y + 60, self.cell5.frame.size.width, self.cell5.frame.size.height);
}
I found the cell's frame has changed, but in ui it does not change. Is there any work should do?
tableView:cellForRowAtIndexPathis called after theviewWillAppearwhich could be the reason. – Larme Jan 21 at 12:02