30

ラベルの属性テキストを設定していますが、この奇妙なエラーが発生しています: キャッチされない例外 'NSRangeException' が原因でアプリを終了しています。理由: 'NSMutableRLEArray replaceObjectsInRange:withObject:length:: Out of bounds'. このエラーは今まで見たことがないので、修正方法がわかりません。クラッシュの原因となっているコードは次のとおりです。

if ([cell.waveTextLabel respondsToSelector:@selector(setAttributedText:)])
{
    const CGFloat fontSize = 16.0f;

    //define attributes
    UIFont *boldFont = [UIFont fontWithName:@"HelveticaNeue-Medium" size:fontSize];

    // Create the attributes
    NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:boldFont, NSFontAttributeName, nil];

    NSRange rangeOfIs = [cell.cellWaveObject.waveString rangeOfString:@" is"];
    NSLog(@"The range of is: {%lu, %lu}", (unsigned long)rangeOfIs.location, (unsigned long)rangeOfIs.length);
    NSRange nameRange = NSMakeRange(0, rangeOfIs.location);
    NSLog(@"The range of the name: {%lu, %lu}", (unsigned long)nameRange.location, (unsigned long)nameRange.length);

    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:cell.cellWaveObject.waveString];
    [attributedString setAttributes:attrs range:nameRange];

    //set the label text
    [cell.waveTextLabel setAttributedText:attributedString]; 
}

例外ブレークポイントを設定しましたが、行でクラッシュして[attributedString setAttributes:attrs range:nameRange];います。これを修正する方法を知っている人はいますか?

4

0 に答える 0