(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.
(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.
NSLog(@"bla %d", section)
NSInteger is basically just an int (but with marginally better-known characteristics).