iPad 应用程序在设备上崩溃

Posted

技术标签:

【中文标题】iPad 应用程序在设备上崩溃【英文标题】:IPad Application crashes on device 【发布时间】:2013-01-25 11:36:06 【问题描述】:

我正在为包含UITableView 的iPad 开发一个应用程序。该应用程序在模拟器上运行良好,但在安装并第一次运行时会在设备上崩溃。当我第二次尝试运行该应用程序时,它工作正常。我无法弄清楚问题所在。 相同的代码在 iPhone 上运行良好,但在 iPad 上崩溃。 我正在为表格使用以下代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath


static NSString *MythoViewCellIdentifier = @"MythoViewCellIdentifier ";

UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:MythoViewCellIdentifier];



if (cell==nil)

    cell=[[[UITableViewCell alloc] initWithFrame:CGRectZero] autorelease];        


[self getMythoData];


UIImageView *imgLogo =[[UIImageView alloc] initWithFrame:CGRectMake(-1,0,37,35)];
imgLogo.backgroundColor =[UIColor clearColor];
imgLogo.image=[UIImage imageNamed:@"bullet_swastik.png"];
[cell.contentView addSubview:imgLogo];



UITextView *txtDetails =[[UITextView alloc] initWithFrame:CGRectMake(37,34,740,200)];
txtDetails.backgroundColor =[UIColor clearColor];
txtDetails.editable=NO;
txtDetails.font=[UIFont systemFontOfSize:25.0];
[cell.contentView addSubview:txtDetails];



//    adding details to the cell
txtDetails.text = [NSString stringWithFormat:@"%@",[FinalmythoData objectAtIndex:indexPath.row]];
cell.selectionStyle = UITableViewCellSelectionStyleNone;


[txtDetails release];

return cell;





 I'm getting the following error

Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes:
KERN_INVALID_ADDRESS at 0x00000000 Crashed Thread:  0




    Thanks 

【问题讨论】:

它到底在哪里崩溃了? 哪个会崩溃?调试器应该能够告诉你。如果调试器没有告诉你,你怎么知道它在上面的代码中? 因为应用程序在包含表格的地方崩溃。不包含表格的视图工作正常 数组计数即[FinalmythoData count]; 【参考方案1】:

该应用在模拟器上运行良好,但在安装并第一次运行时在设备上崩溃。当我尝试第二次运行该应用程序时,它运行良好。

从您的模拟器中删除该应用,清理您的项目,重新构建,然后再次运行该应用。它也有可能在模拟器上崩溃。

【讨论】:

奇怪。然后在控制台或崩溃日志上发布你得到的输出。 exe_bad_access(sigsegv)。我得到这个输出 你肯定有更多...堆栈跟踪是什么等,请粘贴在问题的末尾...【参考方案2】:

确认您的应用没有加载任何可能导致崩溃的繁重数据(图像等)。

在设备上运行您的应用,并使用 Instrument 或任何其他工具确认它没有在内存不足的情况下运行。

【讨论】:

它没有在模拟器和设备上显示任何低内存警告

以上是关于iPad 应用程序在设备上崩溃的主要内容,如果未能解决你的问题,请参考以下文章

带有 renderInContext 的 iPad 3 设备崩溃

iPad应用程序仅在设备上而不是在模拟器中加载笔尖时崩溃

iPhone 应用程序被拒绝 - 由于 iPad 崩溃,目标设备系列设置为仅 iPhone

iAd 在模拟器上工作但在设备上崩溃(ipad)

UIActivityViewController在iOS 8 iPad上崩溃

Xcode 6 iPhone 唯一的应用程序在 iPad 上崩溃