我正在尝试将一个快速的iOS控制器移植到Xamarin iOS。
在swift中
let _mainScrollView = TouchRespondScrollView(frame: self.view.bounds)
_mainScrollView.delegate = self
_mainScrollView.showsHorizontalScrollIndicator = false
self.mainScrollView = _mainScrollView
self.view.addSubview(_mainScrollView)
这在C#中是否正确
var mainScroll = new UIScrollView(this.View.Bounds);
mainScroll.ShowsHorizontalScrollIndicator = false;
mainScroll.Delegate = new ProfileViewDelegate();
this.mainscrollView = mainScroll;
this.View.AddSubview(mainScroll);
在Xamarin文档中找不到有关“TouchRespondScrollView”的任何信息。