不显示分析:
1. dataArray是否为空,打印dataArray.count;
2. da'taArray是否初始化;
3.tableView是否初始化以及相应的frame是否设置合理
一般tableView不显示,可以检查这些
如果崩溃检查:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
是否都写,这两个方法少一个都会导致崩溃,
还有一种可能就是在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
中发生数组越界!
当然还有多种可能,以后碰到再添加!勿喷,谢谢!