My app has an
SKView instance in a view hierarchy that needs to support layout changes at run time (device orientation changes, window bounds changes when multitasking, et cetera). SKView inherits the contentMode property from UIView, so you can choose the drawing behavior during these animations, but the closest option (UIViewContentMode.center) still clips part of the presented scene during the animation, while UIViewContentMode.redraw doesn't have any visible effect.Can anyone offer a way of doing this with the current API? If it's not currently possible, I'll file a bug report.