Static Cells is basically a "What you see is what you get" interface builder in that what you put into the tableview is what you'll see when you run the app.
Dynamic prototypes allows you to lay out cells that you can re-use by calling:
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:CELL_ID_SET_IN_IB];
With this, you determine the number of cells using the delegate methods in the UITableViewController. You can have multiple prototype cells and determine which to load depending on index path.
You can use segues with both.
I would recommend prototypes for your app since it seems like the number of cells you have will change.