XCode: Custom Table UI with links to new page view

I built a custom display tableview in Xcode with multiple line items that have an image and text on each line (9 total). How do I then connect each row to a new page in storyboard?

Possibly following this?
https://guides.codepath.com/ios/Using-UITableView

Here is the video I “sort of” followed to build the custom Tableview.

You’ll need to use the table view delegate method didSelectRowAt

Here’s Apple’s docs on the topic