Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/macos/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Objective c drawRect中崩溃-是什么导致它?_Objective C_Macos - Fatal编程技术网

Objective c drawRect中崩溃-是什么导致它?

Objective c drawRect中崩溃-是什么导致它?,objective-c,macos,Objective C,Macos,我的一些用户遇到了这次崩溃 据我所知,它以某种方式连接到我的子类NSTextView的-drawRect:方法,但我看不出是什么原因导致了它,压力测试也未能消除该缺陷 drawRect的代码 - (NSRange)visibleRangeOfTextView:(NSRect) rect { NSLayoutManager *layoutManager = [self layoutManager]; NST

我的一些用户遇到了这次崩溃

据我所知,它以某种方式连接到我的子类
NSTextView
-drawRect:
方法,但我看不出是什么原因导致了它,压力测试也未能消除该缺陷

drawRect的代码

- (NSRange)visibleRangeOfTextView:(NSRect) rect {
    NSLayoutManager *layoutManager = [self
                                      layoutManager];
    NSTextContainer *textContainer = [self
                                      textContainer];
    NSRange glyphRange, characterRange;
    // first transform to text container coordinates
    NSPoint containerOrigin = [self textContainerOrigin];
    rect.origin.x -= containerOrigin.x;
    rect.origin.y -= containerOrigin.y;

    // next, compute glyph range
    glyphRange = [layoutManager glyphRangeForBoundingRect:rect inTextContainer:textContainer];

    // finally, compute character range
    characterRange = [layoutManager characterRangeForGlyphRange:glyphRange actualGlyphRange:NULL];
    return characterRange;
}

- (NSRect)rectForCharacterRange:(NSRange)charRange
{
    NSRect rect = [self
                   firstRectForCharacterRange:charRange];
    rect.origin = [[self window]
                   convertScreenToBase:rect.origin];
    rect = [self convertRect:rect fromView:nil];
    if (!rect.size.width) rect.size.width = 6.0;
    return rect;
}

- (void)drawRect:(NSRect)dirtyRect
{
    [super drawRect:dirtyRect];
    NSLog(@"Marking it");
    NSMutableArray *arr = [[NSMutableArray alloc] init];
    NSRange visible = [self visibleRangeOfTextView:dirtyRect];
    NSRange last = NSMakeRange(visible.location, 0);    while (true) {
        NSRange error = [appController rangeOfMisspelledWordInString:self.string onlyInRange:visible startingAt:last.location + last.length];
        last = error;
        if (error.location == NSNotFound) {
            break;
        }
        [arr addObject:[NSValue valueWithRange:error]];
    }

    NSLog(@"Spellchecked");

    [[NSColor redColor] setStroke];
    CGFloat dash[] = {2.0f, 2.0f} ;
    // Make the text ranges and mark them
    for (NSValue *val in arr) {
        NSRange range = [val rangeValue]; 
        NSRect rectInTextView = [self rectForCharacterRange:range];
        NSRect toDraw = rectInTextView;
        NSBezierPath*    aPath = [NSBezierPath bezierPath];
        [aPath setLineDash:dash count:2 phase:0];

        NSPoint lineStart = toDraw.origin;
        lineStart.y += toDraw.size.height;
        NSPoint lineEnd = lineStart;
        lineEnd.x += toDraw.size.width;

        [aPath moveToPoint:lineStart];
        [aPath lineToPoint:lineEnd];
        [aPath stroke];        
    };
    NSLog(@"Done");    
}
堆栈跟踪:

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
objc[5751]: garbage collection is ON
*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSConcreteTextStorage attribute:atIndex:longestEffectiveRange:inRange:]: Range or index out of bounds'
*** First throw call stack:
(
    0   CoreFoundation                      0x00007fff91387fc6 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8d4d7d5e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff91387dfa +[NSException raise:format:arguments:] + 106
    3   CoreFoundation                      0x00007fff91387d84 +[NSException raise:format:] + 116
    4   AppKit                              0x00000001005d842c -[NSConcreteTextStorage attribute:atIndex:longestEffectiveRange:inRange:] + 131
    5   AppKit                              0x00000001006288ec -[NSLayoutManager(NSPrivate) _drawBackgroundForGlyphRange:atPoint:parameters:] + 910
    6   AppKit                              0x00000001006277a2 -[NSTextView drawRect:] + 1913
    7   Skrivest√∏tte                       0x000000010000b56c Skrivest√∏tte + 46444
    8   AppKit                              0x0000000100626e66 -[NSTextView _drawRect:clip:] + 2545
    9   AppKit                              0x00000001004a985d -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 3020
    10  AppKit                              0x00000001004aa34e -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5821
    11  AppKit                              0x00000001004aa34e -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5821
    12  AppKit                              0x00000001004a39af -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4755
    13  AppKit                              0x000000010049c395 -[NSView displayIfNeeded] + 1528
    14  AppKit                              0x00000001004a1592 -[NSClipView _immediateScrollToPoint:] + 6533
    15  AppKit                              0x000000010049fb75 -[NSClipView scrollToPoint:] + 239
    16  AppKit                              0x000000010058f637 -[NSScrollView scrollClipView:toPoint:] + 266
    17  AppKit                              0x000000010058f3da -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1497
    18  AppKit                              0x00000001005923b7 -[NSClipView _scrollTo:animate:] + 27
    19  AppKit                              0x0000000100bcd5a2 __-[NSScrollView _snapRubberBand]_block_invoke_2 + 1536
    20  AppKit                              0x0000000100b3fc4e ____NSPeriodicInvokerScheduled_block_invoke_2 + 53
    21  libdispatch.dylib                   0x00007fff907b98ba _dispatch_call_block_and_release + 18
    22  libdispatch.dylib                   0x00007fff907bbc07 _dispatch_after_timer_callback + 16
    23  libdispatch.dylib                   0x00007fff907be2b6 _dispatch_source_invoke + 635
    24  libdispatch.dylib                   0x00007fff907baf77 _dispatch_queue_invoke + 71
    25  libdispatch.dylib                   0x00007fff907bb6f7 _dispatch_main_queue_callback_4CF + 257
    26  CoreFoundation                      0x00007fff9131d06c __CFRunLoopRun + 1724
    27  CoreFoundation                      0x00007fff9131c676 CFRunLoopRunSpecific + 230
    28  HIToolbox                           0x00007fff93ab831f RunCurrentEventLoopInMode + 277
    29  HIToolbox                           0x00007fff93abf5c9 ReceiveNextEventCommon + 355
    30  HIToolbox                           0x00007fff93abf456 BlockUntilNextEventMatchingListInMode + 62
    31  AppKit                              0x000000010045ff5d _DPSNextEvent + 659
    32  AppKit                              0x000000010045f861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    33  AppKit                              0x000000010045c19d -[NSApplication run] + 470
    34  AppKit                              0x00000001006dab88 NSApplicationMain + 867
    35  Skrivest√∏tte                       0x0000000100001020 Skrivest√∏tte + 4128
    36  ???                                 0x0000000000000002 0x0 + 2
)

我认为您需要添加断言函数来检查“范围”


确保范围不会被
NSNotFound

*由于未捕获的异常“NSRangeException”而终止应用程序,原因:'*

[NSContectExtStorage属性:atIndex:LongesEffectiveRange:inRange:::]:范围或索引超出范围'


正如O'y所说,这显然是NSRange的一个例外

你能看看这里发生了什么吗:35 Skrivest√∏tte 0x000000010000020 Skrivest√∏tte+4128对不起,这是我的。由于某些原因,我没有幸运地将崩溃报告符号化。首先,请尝试确定是哪个使用的NSRanges导致了异常。然后检查其值以防出现异常。您的代码看起来正常,因此NSRange无效的原因可能不在ittomk范围内,我认为您可能已经解决了这个问题。iOS应用程序中的类似代码有时会检测到超出txt视图中字符串的范围,从而导致布局管理器崩溃。我怀疑这里也一样。一种奇怪的比赛状态。你为什么不把它当作一个答案,这样我就可以相信你了?跟踪似乎表明
[super-drawRect://code>触发了这一点(即
NSTextView
本身)。你说你把它子类化了…你到底覆盖了哪些方法?您是否覆盖了任何返回范围的内容,例如
selectedRanges
?虽然添加断言不会有什么坏处,但我很确定填充arr的代码会屏蔽NSNotFound项。我认为真正的原因是范围超出了文本视图中文本的长度,因此,从布局管理器请求矩形将崩溃。不过,谢谢你的建议。
NSRange range = [val rangeValue];