0
私はこのコードを持っている:subdataWithRangeの部分データ範囲がクラッシュするのはなぜですか?
NSMutableData *derivedKey = [NSMutableData dataWithLength:32];
// code missing..fill somehow the derivedKey with 32 random bytes
// This line doesn't crash
NSData *iv = [derivedKey subdataWithRange:NSMakeRange(0, 32)];
..
// This line crashes
NSData *iv = [derivedKey subdataWithRange:NSMakeRange(16, 32)];
これがなぜ起こるかどんな提案? NSRangeMakeの2番目のパラメータは範囲の長さであるので、32回のパス 私は、それがクラッシュしたバイト
Oh..Iは、位置とそれを混同。どうもありがとうございました –