【Swift】[19]UITableViewを継承したViewに更新機能を追加する 投稿日: 2018年11月6日2019年6月15日 投稿者: Ediie UITableViewやCollectionViewなど、コンテンツを列挙させたViewに更新機能を付ける場合には、、下記のようなコードを書くことにより実現できます。。 var refreshControl = UIRefreshControl() override func viewDidLoad() { ... refreshControl.addTarget(self, action: #selector(TimeLineViewController.refresh), for: UIControlEvents.valueChanged) refreshControl.backgroundColor = UIColor.clear refreshControl.tintColor = UIColor.darkGray refreshControl.clipsToBounds = true [UITableViewなど].addSubview(refreshControl) ... ... } ... @objc func refresh(){ //更新時の処理 } Related posts 【Swift】[21]同じ処理を一定間隔で動作させる方法 【Swift】[25]UIButtonの置き方 【Swift】[26]UIButtonのカスタマイズ