- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   UITableViewCell *cell;
   NSString *reuseID = @"cellID";

   cell = [tableView dequeueReusableCellWithIdentifier:reuseID];

   if(cell == nil) {
      cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                     reuseIdentifier:reuseID] autorelease];
      NSLog(@"Utworzono nowy widok komrki");
   }

   [[cell textLabel] setText:@"Witaj wiecie!"];

   return cell;
}
