I am trying to get a UITableview to go to the top of the page when I reload the table data when I call the following from
- (void)pickerView:(UIPickerView *)pic
You must scroll UITableView at the first row of your table view by using this line of code:
self.yourTableView.scrollToRow(at: IndexPath(row: 0, section: 0), at: .top, animated: true)