I have some issues when rotating the device.
Stretched text in the tablerows after rotating the device and a weird animation when first clicking a tablerow and then going back in landscape view.
I'm using custom tablerows which
Code:
[super setNeedsDisplay];
[contentView setNeedsDisplay];
to update the tablerow. this is in it's own class. if i comment them, the tablerows doesn't update when the app starts, so i think i need to activate them in this function:
Code:
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
NSLog(@"rotation");
}
but i don't know how to reference a function in another class.
Here is the project:
http://drop.io/43cjvb3
Can someone help me out?
Screenshot of the problem