SWRevealViewController
SWRevealViewController copied to clipboard
'automaticallyAdjustsScrollViewInsets' is deprecated: first deprecated in iOS 11.0
Any Only heaving any solution for this warning?
Warning : 'automaticallyAdjustsScrollViewInsets' is deprecated: first deprecated in iOS 11.0 - Use UIScrollView's contentInsetAdjustmentBehavior instead
` if ( [controllerView isKindOfClass:[UIScrollView class]] )
{
BOOL adjust = controller.automaticallyAdjustsScrollViewInsets;
if ( adjust )
{
[(id)controllerView setContentInset:UIEdgeInsetsMake(statusBarAdjustment(_contentView), 0, 0, 0)];
}
}`
https://github.com/John-Lluch/SWRevealViewController/issues/763#issuecomment-396318590