2 writes to _headerUIView
Microsoft.Maui.Controls (2)
Handlers\Items\iOS\StructuredItemsViewController.cs (2)
44 _headerUIView = null; 122 ref _headerUIView, ref _headerViewFormsElement);
9 references to _headerUIView
Microsoft.Maui.Controls (9)
Handlers\Items\iOS\StructuredItemsViewController.cs (9)
169 nfloat headerWidth = ((ItemsView?.Header is View) ? _headerViewFormsElement?.ToPlatform() : _headerUIView)?.Frame.Width ?? 0f; 173 if (_headerUIView != null && _headerUIView.Frame.X != headerWidth) 175 _headerUIView.Frame = new CoreGraphics.CGRect(-headerWidth, 0, headerWidth, CollectionView.Frame.Height); 199 nfloat headerHeight = ((ItemsView?.Header is View) ? _headerViewFormsElement?.ToPlatform() : _headerUIView)?.Frame.Height ?? 0f; 222 if (_headerUIView != null && _headerUIView.Frame.Y != headerHeight) 224 _headerUIView.Frame = new CoreGraphics.CGRect(0, -headerHeight, CollectionView.Frame.Width, headerHeight); 250 return new Size(size.Value.Width, size.Value.Height + (_headerUIView?.Frame.Height ?? 0) + (_footerUIView?.Frame.Height ?? 0));