Hi,
I want to do some custom code in MasterDetailPage renderer when iPad is rotated. Problem is WillRotate/DidRotate is not called, any idea why?
[assembly: ExportRenderer(typeof(MasterDetailPage), typeof(IPadMasterDetailRenderer), UIUserInterfaceIdiom.Pad)]
namespace xx.iOS.Renderers
{
class IPadMasterDetailRenderer : TabletMasterDetailRenderer
{
public override void DidRotate( UIInterfaceOrientation fromInterfaceOrientation )
{
base.DidRotate( fromInterfaceOrientation );
}
}
}