Я не могу присвоить черный фон своим взглядам - PullRequest
0 голосов
/ 05 мая 2011

Я не могу назначить черный фон ни строкам моей таблицы, ни добавленным ImageViews. (Каждая строка имеет несколько изображений. Фоны всегда белые. Это мой код:

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

// Configure the cell...
cell.textLabel.text = [self wordAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellEditingStyleNone;
cell.backgroundColor = [UIColor colorWithRed: 0.0 green: 0.0 blue: 0.0 alpha: 1.0];

//NSString *url = self.imageURL;
//dispatch_queue_t callerQueue = dispatch_get_current_queue();

dispatch_queue_t downloadQueue = dispatch_queue_create("Flickr downloader in Photo", NULL);
dispatch_async(downloadQueue, ^{
    NSData *image = [FlickrFetcher imageDataFromPhotoId:@"2654899252"];
    NSData *image2 = [FlickrFetcher imageDataFromPhotoId:@"2654072649"];
    NSData *image3 = [FlickrFetcher imageDataFromPhotoId:@"2654072293"];        /*dispatch_async(callerQueue, ^{
        processImage(imageData);
    });*/

    UIImageView *imageView = nil;

    if(image) imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithData: image]];

    UIImageView *imageView2 = nil;
    if(image2) imageView2 = [[UIImageView alloc] initWithImage:[UIImage imageWithData: image2]];

    UIImageView *imageView3 = nil;
    if(image3) imageView3 = [[UIImageView alloc] initWithImage:[UIImage imageWithData: image3]];

    imageView.frame = CGRectMake(0.0, 0.0, 220, 200);
    imageView2.frame = CGRectMake(240.0, 0.0, 220, 200);
    imageView3.frame = CGRectMake(480.0, 0.0, 220, 200);

    imageView.backgroundColor = [UIColor colorWithRed: 0.0 green: 0.0 blue: 0.0 alpha: 1.0];
    imageView2.backgroundColor = [UIColor colorWithRed: 0.0 green: 0.0 blue: 0.0 alpha: 1.0];
    imageView3.backgroundColor = [UIColor colorWithRed: 0.0 green: 0.0 blue: 0.0 alpha: 1.0];



    [cell addSubview:imageView];
    [cell addSubview:imageView2];
    [cell addSubview:imageView3];

    [imageView release];
    [imageView2 release];
    [imageView3 release];
});
dispatch_release(downloadQueue);

1 Ответ

0 голосов
/ 05 мая 2011

хорошо, попробуйте добавить:

cell.contentView.backgroundColor = [UIColor blackColor];
cell.backgroundView.backgroundColor = [UIColor blackColor];

Строки удаляются путем установки tableView.separatorStyle в UITableViewCellSeparatorStyleNone

Вы должны иметь UITableView в вашем ViewController. Если вы используете UITableViewController, установите свойство в вашем методе viewDidLoad:

-(void) viewDidLoad {
    [super viewDidLoad];
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...