Advertisement
Guest User

Untitled

a guest
Jun 5th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (void)performQuoteIdentifier:(SCBPratica*)quote {
  2.     if ([quote.idPratica isEqualToString: @"14783197"]) {
  3.         DashboardControllerView *vc = [UIStoryboard.dashboard instantiateViewControllerWithIdentifier:@"DashboardControllerView"];
  4.         DashboardControllerViewModel *viewModel = [[DashboardControllerViewModel alloc] initWithPratica: quote];
  5.         vc.viewModel = viewModel;
  6.         [self.navigationController pushViewController:vc animated:YES];
  7.     } else {
  8.         DashboardViewController *vc = [UIStoryboard.dashboard instantiateViewControllerWithIdentifier:@"DashboardViewController"];
  9.         self.navigationItem.title = @" ";
  10.         vc.idPraticaFromNotification = quote.idPratica;
  11.         [self.navigationController pushViewController:vc animated:YES];
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement