FAPanels icon indicating copy to clipboard operation
FAPanels copied to clipboard

ViewDidLoad in leftview will cause bug

Open PrashantKT opened this issue 5 years ago • 0 comments

I have written following line in view did load method of left menu vc

         let indexPath = IndexPath(row: 0, section: 0);
                self.tableView.selectRow(at: indexPath, animated: false, scrollPosition: UITableView.ScrollPosition.none)
                self.tableView(self.tableView, didSelectRowAt: indexPath)

Now Press on drawer not opening the left menu first time. and on second time no animation is coming

and then after everything working as usual

I have also tried the same thing in sample code

PrashantKT avatar Feb 14 '19 11:02 PrashantKT