Your table view may have static content or dynamic content.
If you want the table view to always have the same content, set it to static (in the interface builder), and then you can link such points in the UIViewController .
If you want the table view cells to change dynamically, you cannot do it this way. Because you could repeat the cells, and the output would be mixed. You need to subclass UITableViewCell for your cells and create points there.
To clarify: in dynamic table mode you need to ctrl + drag the output to a subclass of UITableViewCell , and not the view controller.
source share