我正在使用UIRefreshControl
下拉刷新 iOS 6,它正在工作。我正在使用自定义委托在完成时进行更新,在我调用的那个方法中,
[self->refresh endRefreshing];
我已经宣布,
UIRefreshControl *refresh;
在接口文件中,因为我无法调用
[self->refresh endRefreshing]
通过自定义委托方法。
这一切都适用于 iOS 6,但在较低版本的 iOS 上,它会失败,因为 `UIRefreshControl' 仅适用于 iOS 6 及更高版本。
我如何有条件地声明它们以便它在 iOS6 及更低版本上都可以使用?