16進値を2進値に変換しようとしていますが、ほとんど問題に直面していません。私は自分の欠点を学ぼうとしているのは初めてです。
私のコード:
NSMutableString *str;
NSString *dd = @"192:168:1:2:0B:2:D:00";
NSCharacterSet *donotwant1 = [NSCharacterSet characterSetWithCharactersInString:@":""];
dd =[[dd componentsSeparatedByCharactersInSet:donotwant1] componentsJoinedByString:@" "];
NSMutableArray *array = [[dd componentsSeparatedByString:@" "] mutableCopy];
[array removeObjectAtIndex:0];
//NSLog(@"%@",array);
for (int j=0; j<[array count]; j++) {
NSScanner *scan = [NSScanner scannerWithString:[array objectAtIndex:j]];
unsigned int i=0;
if ([scan scanHexInt:&i]) {
// NSLog(@"numbner is %ustr", i);
}
NSInteger theNumber = i;
str = [NSMutableString string];
for(NSInteger numberCopy = theNumber; numberCopy > 0; numberCopy >>= 1) {
// Prepend "0" or "1", depending on the bit
[str insertString:((numberCopy & 1) ? @"1" : @"0") atIndex:0];
[array removeObjectAtIndex:j];
[array insertObject:str atIndex:j];
}
}
NSLog(@"Binary version: %@", array);
私は得ています
1,1100,11001111,1111,1111,11101111....。
私のコードでは、0の値が削除されています。(00000001,00001100 .....)のような8ビットが欲しいのですが、理由を教えてもらえますか