我是 Xamarin iOS 开发的新手,我们有一个遗留代码,他们在其中使用 DialogViewController 创建了所有 tableview。ViewController 层次结构如下:PQR 派生自 ABC,ABC 派生自 DialogViewController。现在我想为包含 ABC 对象的 PQR 视图控制器显示 refreshControl。
我在 PQR 视图控制器中创建了一个 ABC 视图控制器的对象。
abcDVC = new ABCDVC (this);
tableRefreshControl = new UIRefreshControl ();
if (IsIOS10OrGreater)
abcDVC.RefreshControl = tableRefreshControl;
tableRefreshControl.ValueChanged += LoadNotesAsync;
我没有收到任何错误。但是当用户拉下表格时,我的 refreshControl 不可见。它以前工作过,现在停止工作。
先感谢您。