AX ERROR: Could not find my mock parent, most likely I am stale
使用设计好的cell做为表头视图,控制出现的log,挺有意思。
1 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 2 { 3 4 IoriTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"DataDetailHeadCell"]; 5 cell.ownerTableView = tableView; 6 [cell updateCellContent:[(DataDetailDataSource*)dataSource headArray]]; 7 cell.selectionStyle = UITableViewCellSelectionStyleNone; 8 return cell; 9 10 }
南来地,北往的,上班的,下岗的,走过路过不要错过!
======================个性签名=====================
之前认为Apple 的iOS 设计的要比 Android 稳定,我错了吗?
下载的许多客户端程序/游戏程序,经常会Crash,是程序写的不好(内存泄漏?刚启动也会吗?)还是iOS本身的不稳定!!!
如果在Android手机中可以简单联接到ddms,就可以查看系统log,很容易看到程序为什么出错,在iPhone中如何得知呢?试试Organizer吧,分析一下Device logs,也许有用.