Exemplo n.º 1
0
        void UpdateFooterPosition(nfloat footerHeight)
        {
            if (_footerView == null)
            {
                return;
            }

            var footerWidth = View.Frame.Width;

            _footerView.Frame = new CoreGraphics.CGRect(0, View.Frame.Height - footerHeight, footerWidth, footerHeight);

            _tableViewController.LayoutParallax();
        }
        public override void ViewDidLayoutSubviews()
        {
            base.ViewDidLayoutSubviews();

            _tableViewController.LayoutParallax();
            _blurView.Frame = View.Bounds;
        }