我有一个 UITableViewController,它有自己的 tableview。但我仍然想要另一个 UITableView,其数据源和委托在另一个类中。
症状是:iPhone 4.0 无法显示 UITableView ,而 iPhone 6.0 Simulator 可以以可见且正确的方式显示此 UITableView 。
NSLog 告诉我 UITableView 在 iPhone 上的高度是 0.0。
问题是:我将获得第二个 UITableView
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
和
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;`
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
没有任何反应...