Beispiel #1
0
        void Initialize()
        {
            DependencyContainer.Inject(this);

            var nib = NSBundle.MainBundle.LoadNib(NibName, this, null);

            _view = Runtime.GetNSObject(nib.ValueAt(0)) as UIView;
            AddSubview(_view);
            _view.AddConstraintsToFillSuperview();
        }