NSLog无法正常工作

时间:2010-11-09 07:58:36

标签: objective-c xcode nslog

我见过的最奇怪的事情...... NSLog在基于奇怪事物的方法中失败了。这是代码:

-(void) testBoard {
BoardManager* bm = [BoardManager manager];
 Board* board = [bm boardForName:@"fourteen by eight"];
 NSLog(@"%@", board);
 NSLog(@"%@", board.coords);
    }

在Board.m中:

-(NSArray*) coords {
  if(!_coords.count && _definition) {
    NSArray* c = [Board decode:_definition];
    [self setCoords:c];
  }
  return _coords;
} 

    +(NSArray*) decode:(NSString*)encodedCoords {
 NSMutableArray* coords = [NSMutableArray array];
 NSArray* tokens = [encodedCoords componentsSeparatedByString:@","];
 int i = 0;
 NSString* dimStr = [tokens objectAtIndex:i++];
 int width = [dimStr substringToIndex:2].intValue;
 int height = [dimStr substringWithRange:NSMakeRange(2, 2)].intValue;
 int depth = [dimStr substringFromIndex:4].intValue;
 NSLog(@"w=%d h=%d d=%d", width, height, depth);

 NSString* b128;
 NSString* b2;

 for(int z=0; z<depth; z++) {
  for(int y=0; y<height; y++) {
   b128 = [tokens objectAtIndex:i++];
   NSLog(@"[%@]", b128);

   b2 = [Board base128to2:b128];
   NSLog(@"b2=%@",b2);

   for(int x=0; x<b2.length; x++) {
    if([b2 characterAtIndex:b2.length-1-x] == '1') {
     Coord* coord = [Coord x:width-1-x y:height-1-y z:z];
     [coords addObject:coord];
    }
   }
  }
 }
 return coords;
    }

现在发生的事情是,解码中的NSLog语句或解码中调用的方法都不会记录到控制台。但是,在调用decode:work之前和之后的NSLog,以及NSLog周围的其余代码执行正常。我发现只需通过注释掉[coords addObject:coord];就可以使所有的NSLog语句都能正常工作。此语句在影响的 NSLog语句之后出现。我还发现我可以通过在testBoard中重新排列几行来使NSLog工作:像这样:

   -(void) testBoard
    {
 BoardManager* bm = [BoardManager manager];
 Board* board = [bm boardForName:@"fourteen by eight"];
 NSLog(@"%@", board);

 NSString* def = board.definition;
 NSArray* coords = [Board decode:def];

 NSLog(@"%@", coords);
    }

这看起来很奇怪...... xcode Loch Ness怪物浮出水面?!

2 个答案:

答案 0 :(得分:0)

你试过在调试器中运行吗?当你到达if语句

时会发生什么
 if(!_coords.count && _definition)

你确定_coords.count是0而且_definition不是nil

答案 1 :(得分:0)

根据我的经验,NSLog宏扩展可能会失败。大多数时候,很明显为什么,有时候不是。 做这样的事情:

id objToLog = /* whatever */;
NSLog(@"%@", objToLog);

如果这种方法有效,您可以继续进行开发,也许稍后会解决问题。