objective c - Reuse static table view (iOS) -


in app using uitableviewcontroller entering data. want use same table in view controller modifying data.

my idea: implement additional view controller , let these 2 inherit it. controls same , of behavior well. however, in both need additional properties, in 1 delegate, , 1-2 methods must overridden. far gut.

my problem: cannot have static table (with sections , rows) in .xib file. cannot reuse table.

my question: how use such inherited controllers in storyboards? need 1 common superclass. however, cannot use directly, doesn't have properties , methods need. , don't want try doing in 1 class. can do?

have checked out free sensible tableview framework? seems provide need out of box.


Comments