解决方法
可能有两种可能的原因.
首先,你没有在故事板中使用UITableViewController,即你在UIViewController中有一个UITableView.如果你想使用静态单元格,我很确定你必须使用UITableViewController.
其次,您已正确实例化UITableView,但您已在UITableView的委托中实现了编程控制功能.具体而言,这些功能至少包括:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
如果不是这种情况,那么我认为您需要提供更多信息.