找不到“TouchRespondScrollView”

时间:2017-04-23 14:11:56

标签: xamarin xamarin.ios

我正在尝试将一个快速的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”的任何信息。

0 个答案:

没有答案