2 writes to _actualView
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\FrameRenderer.cs (2)
23 _actualView = new FrameView(); 176 _actualView = null;
27 references to _actualView
Microsoft.Maui.Controls.Compatibility (27)
iOS\Renderers\FrameRenderer.cs (27)
24 AddSubview(_actualView); 29 if (view != _actualView) 30 _actualView.AddSubview(view); 70 if (_actualView == null) 78 _actualView.Layer.CornerRadius = cornerRadius; 79 _actualView.Layer.MasksToBounds = cornerRadius > 0; 82 _actualView.Layer.BackgroundColor = ColorExtensions.BackgroundColor.CGColor; 88 _actualView.Layer.BackgroundColor = Element.BackgroundColor.ToCGColor(); 91 _actualView.Layer.RemoveBackgroundLayer(); 99 _actualView.Layer.BackgroundColor = UIColor.Clear.CGColor; 106 _actualView.Layer.BorderColor = UIColor.Clear.CGColor; 109 _actualView.Layer.BorderColor = Element.BorderColor.ToCGColor(); 110 _actualView.Layer.BorderWidth = 1; 129 _actualView.Layer.RasterizationScale = UIScreen.MainScreen.Scale; 130 _actualView.Layer.ShouldRasterize = true; 131 _actualView.Layer.MasksToBounds = Element.IsClippedToBounds; 147 if (_actualView != null) 148 _actualView.Frame = Bounds; 166 if (_actualView != null) 168 for (var i = 0; i < _actualView.GestureRecognizers?.Length; i++) 169 _actualView.GestureRecognizers.Remove(_actualView.GestureRecognizers[i]); 171 for (var j = 0; j < _actualView.Subviews.Length; j++) 172 _actualView.Subviews.Remove(_actualView.Subviews[j]); 174 _actualView.RemoveFromSuperview(); 175 _actualView.Dispose();