I am trying to update my values in picked controller continuously after API call but values are only updating on first time & not thereafter...I am using following two lines for creating view as per sample example
self.pullUpController.dataSource = self
self.pullUpController.setupCard(from: self.view)
i have observed that data source methods are only called up when self.pullUpController.setupCard function is called but i only want to create card view once & keep updating values thereafter which i am not able to do...
I am trying to update my values in picked controller continuously after API call but values are only updating on first time & not thereafter...I am using following two lines for creating view as per sample example
self.pullUpController.dataSource = self
self.pullUpController.setupCard(from: self.view)
i have observed that data source methods are only called up when self.pullUpController.setupCard function is called but i only want to create card view once & keep updating values thereafter which i am not able to do...