Пример #1
0
        public NativeCell(NSString cellId, FastCell fastCell) : base(UITableViewCellStyle.Default, cellId)
        {
            _fastCell = fastCell;
            _fastCell.PrepareCell();
            //			_fastCell.OriginalBindingContext = _fastCell.BindingContext;

            var renderer = Xamarin.Forms.Platform.iOS.Platform.CreateRenderer(fastCell.View);

            _view = renderer.NativeView;
            ContentView.AddSubview(_view);
        }