【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】[8]UIButtonを押した際のアニメーション実現方法 【Swift】[24]UIScrollViewをスクロールした際の処理を定義する方法 【Swift】[9]NSTaggedPointerStringからIntにキャストする方法