Different classes work together

Viewed 108

I work with swift 3 for macOS and I have a general question. In my Storyboard are two View Controllers with a tableview for each View Controller.

Example: View Controller A > VC_A.class View Controller B > VC_B.class

Both View Controllers are elements of one Split View Controller. now i would like to put one row element form VC A to VC B via drag and drop. this works fine, if both VC are in one class.

but now i would like to split it like the example below (VC_A and VC_B.class)

but how can i control the iboutlet tblview of VC_A in the VC_B.class?

1 Answers
Related