I have a TutorialsViewController that has a PageViewController added programmatically as:
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additi
I seem to have found the fix for it, it was related to the auto layout constraints i had set up. My child view controller contains an image view that completely fills it. So i give following constraints to the image view:
This stops the view shifting/flickering problem.