Uygulamamda UIViewController içerisine bir UITableView ekledim. Daha sonra viewDidLoad'ta şu şekilde refreshControl'ü ayarladım:
refreshControl = UIRefreshControl()
refreshControl.attributedTitle = NSAttributedString(string: "Yenilemek için bırakın") refreshControl.addTarget(self, action: "refresh", forControlEvents: UIControlEvents.ValueChanged)
self.tableView.addSubview(refreshControl)
Ancak tabloyu aşağı doğru biraz çekince görünmesini umduğum refreshControl aktif olmuyor. Tabloyu çok aşağı doğru çekersem aktif olup vazifesini yapıyor. Bunun nedeni ne olabilir acaba ? Nasıl düzeltebilirim bu sorunu ?