How do I “hide” a UIRefreshControl?

前端 未结 12 966
醉梦人生
醉梦人生 2020-12-15 16:16

Occasionally my table view won\'t be connected to a service to refresh, and in that case, I don\'t want the UIRefreshControl to be present.

After I add it in viewDid

12条回答
  •  不思量自难忘°
    2020-12-15 17:18

    To hide refresh control and avoid warning Just use

    Objective C

    [self.refreshControl removeFromSuperview];

    Swift

    self.refreshControl.removeFromSuperview()
    

提交回复
热议问题