In a side menu tableview there are 3 sections. The value of one row in the second section depends on the login.
Case1: User A Logs in, items in 2nd Section are iAdmin
, Dashboard
, Tickets
..etc
Case 2: If User B logs, items in 2nd section are Dashboard
,Tickets
etc.
i.e iAdmin
wont be available in 2nd section if user B logs in
The issue is: I need to navigate to a particular page when i click on Tickets inspite of whichever user logs in
Here is the code for it :
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
{
if indexPath.section==1 && indexPath.row==2
{
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let controller = storyboard.instantiateViewController(withIdentifier: "TicketsViewController") as! Tickets
let transition = CATransition()
transition.duration = 0.5
transition.type = kCATransitionPush
transition.subtype = kCATransitionFromRight
view.window!.layer.add(transition, forKey: kCATransition)
self.present(controller,animated: false,completion: nil)
}
Try the below solution.Hope this will help you.