ios - 应用程序在 iPad 上崩溃,但在 iPad 模拟器中不会崩溃

标签 ios properties crash ios-simulator calayer

在这个过程中,我的应用程序开始在 iPad 上崩溃,尽管它在模拟器中仍然运行良好。我正在使用 XCode 4.3.1,并在 iOS 5.1 上部署。

相关代码如下。执行ImageLayer的drawInContext:方法时崩溃。

ImageLayer.h:

#import <QuartzCore/QuartzCore.h>

@interface ImageLayer : CALayer {}

@property (nonatomic, retain) NSString *path;

@end

ImageLayer.m:

#import "ImageLayer.h"

@implementation ImageLayer

@synthesize path;

- (void)drawInContext:(CGContextRef)ctx
{
    [super drawInContext:ctx];
    CGImageRef img = [UIImage imageWithContentsOfFile:path].CGImage;
    NSLog(@"path = %@", path);
    if (img) {
        CGRect rect = CGContextGetClipBoundingBox(ctx);
        CGContextTranslateCTM(ctx, 0.0, rect.size.height);
        CGContextScaleCTM(ctx, 1.0, -1.0);
        rect = CGContextGetClipBoundingBox(ctx);
        CGContextDrawImage(ctx, rect, img);             // Crashes here!
        CGContextScaleCTM(ctx, 1.0, -1.0);
    }
}

@end

LayeredView.h:

#import <UIKit/UIKit.h>

@interface LayeredView : UIView {}

@end

LayeredView.m:

#import "LayeredView.h"
#import "ImageLayer.h"

@implementation LayeredView

- (id)initWithFrame:(CGRect)frame 
{
    self = [super initWithFrame:frame];
    if (self) {
        NSString *path = [[[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent: @"Letter A"] stringByAppendingPathComponent:@"bg.png"];
        ImageLayer *l = [ImageLayer layer];
        l.path = path;
        l.frame = CGRectMake(0, -27, 1024, 795);
        [self.layer addSublayer:l];
        [l setNeedsDisplay];
    }
    return self;
}

崩溃日志

Incident Identifier: F0104517-289E-4B50-BBD0-5E9E0B19BAE8
CrashReporter Key:   dc4048f7e9778dfac3941d3352d4edac4a35bd47
Hardware Model:      iPad2,1
Process:         ABC [4843]
Path:            /var/mobile/Applications/88FE4107-4433-4A36-A511-0B9619B256EB/ABC.app/ABC
Identifier:      ABC
Version:         ??? (???)
Code Type:       ARM (Native)
Parent Process:  launchd [1]

Date/Time:       2012-03-16 14:38:30.326 -0700
OS Version:      iPhone OS 5.1 (9B176)
Report Version:  104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib          0x371a132c 0x37190000 + 70444
1   libsystem_c.dylib               0x33307208 0x332ba000 + 315912
2   libsystem_c.dylib               0x33300298 0x332ba000 + 287384
3   GraphicsServices                0x333d987c 0x333d5000 + 18556
4   GraphicsServices                0x333da2bc 0x333d5000 + 21180
5   UIKit                           0x35b50c5a 0x35b1f000 + 203866
6   ABC                             0x000e045c 0xdf000 + 5212
7   ABC                             0x000e0400 0xdf000 + 5120

最佳答案

找到了。通过更改此行

CGImageRef img = [UIImage imageWithContentsOfFile:path].CGImage;

UIImage *image = [UIImage imageWithContentsOfFile:path];
CGImageRef img = image.CGImage;

一切正常。我的猜测是 ARC 仅保留 CGImageRef,并处理图像,除非为其分配变量。

关于ios - 应用程序在 iPad 上崩溃,但在 iPad 模拟器中不会崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9762907/

相关文章:

ios - 当 UILabel 文本溢出 Swift 3 中的 View 时,使 UILabel 文本滚动或以字幕样式动画

ios - Swift - 子类 UICollectionViewCell 不加载 IBOutlet 属性

java - Mule - 测试具有以 Mule 属性作为文件路径的入站/出站端点的流

c# - 在 C# 中将对象视为属性字典

objective-c - iOS应用程序在后台崩溃并快速重新启动,没有崩溃日志

ios - UIActivityViewController 在 Testflight 中崩溃,但在从 Xcode 构建时不会崩溃

ios - 如何在滚动时折叠 UITableView header

iphone - 反转来自麦克风的音频

javascript - 删除全局对象中的属性(误解)

c - 我的C程序在启动时一直崩溃