views:

372

answers:

1
  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { NSLog(@"bla %@", [section count]);

    return [possessions count]; }

Does anyone know how to implement a simple NSLog because I am getting an error.

+1  A: 

NSLog(@"bla %d", section)

NSInteger is basically just an int (but with marginally better-known characteristics).

walkytalky