I have one view controller which is a subclass of UITableViewcontroller, that UITableViewcontroller i need show under one UIView which I need to assign Corner Radius so it will match with my design.
UITableViewcontroller is the Generic tableview class which I have used in the whole project so I couldn't make changes in the structure.
All my ViewController are created programmatically, i have not used anywhere Storyboard.
Here is my Viewconroller Code where I am implementing
- headerViewController is part which i mark as white
 - deal and team controller is my UITableviewController which i have added in SJSegment
 
     private func setupSegmentController() {
        segmentViewController.headerViewHeight = 350
        segmentViewController.headerViewController = headerViewController
        segmentViewController.segmentControllers = [
            dealViewController,
            teamViewController]
        segmentViewController.delegate = self
        
        addChild(segmentViewController)
        segmentViewController.view.frame = view.bounds
        view.addSubview(segmentViewController.view)
        segmentViewController.didMove(toParent: self)
        
      }
Below in red highlighted is the area which i need to design
