in my objective-c view controller i need push to next swift view controller, my basic project - obj c, after add swift file, Xcode generate Bridging-Header.h, but i not see -swift.h file
hot to push in swift View from obj-c view ?
-(void)longTapInDaClub:(UILongPressGestureRecognizer *)longTap {
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"mail" bundle:nil];
nextView *view = (nextView *) [stb instantiateViewControllerWithIdentifier:"next"];
[nextView getIdSample: _idSample];
[self.navigationController pushViewController:view animated:YES];
}
nextView - is Swift view controller