uitableview - Static TableViewControllers cells UI don't show up when connected to a controller -
i running strange problem regarding uitableview cells in xcode 6 ios8. when create tableviewcontroller storyboard , choose static cells, view shows suppose to. however, when connect same view tableviewcontroller source, cells disappear. connected necessary things (reusable cell_id, etc). experience this? used work me previously. in advance!
make sure don't implement of uitableviewdatasourcedelegate
methods in tableviewcontroller
such these methods below.
- (nsinteger)numberofsectionsintableview:(uitableview *)tableview { } - (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section { } - (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath { }
Comments
Post a Comment