Невозможно установить изображение в представлении изображения - PullRequest
0 голосов
/ 22 июня 2011

В моем приложении у меня есть контроллер всплывающего окна, который показывает несколько изображений при нажатии из другого представления. В другом представлении есть некоторые изображения. Все изображения имеют кнопку со стрелкой над ними, нажимая на которую появляется всплывающее окноОтображение. Позвольте мне перейти к проблеме. Скажем, например, я нажал кнопку со стрелкой над вторым изображением, и на экране появилось всплывающее окно. Теперь, когда я выбираю любое изображение из всплывающего окна, я хочу установить это изображение на представление изображения, присутствующее восновной вид (или вид изображения, состоящий из кнопки со стрелкой). Но то, что я получаю, это то, что когда я выбираю любое изображение из всплывающего окна, оно всегда устанавливается на последний вид изображения, присутствующий в главном виде. Я хочу установитьэто на том же изображении выше, чья кнопка со стрелкой нажата для отображения всплывающего окна.

мой код: -

основной вид: -

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {    
    UITableViewCell *cell = nil;

    static NSString *AutoCompleteRowIdentifier = @"AutoCompleteRowIdentifier";

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

        UIImageView * imageView1 = [[[UIImageView alloc] initWithFrame:CGRectMake(25, 4, 80, 80)] autorelease];
        UIImageView * imageView2 = [[[UIImageView alloc] initWithFrame:CGRectMake(115,4,80, 80)] autorelease];
        UIImageView * imageView3 = [[[UIImageView alloc] initWithFrame:CGRectMake(205,4, 80, 80)] autorelease];
        UIImageView * imageView4 = [[[UIImageView alloc] initWithFrame:CGRectMake(295,4, 80, 80)] autorelease];

        imageView1.tag = j;
        imageView2.tag = j+1;
        imageView3.tag = j+2;
        imageView4.tag = j+3;

        [cell.contentView addSubview:imageView1];
        [cell.contentView addSubview:imageView2];
        [cell.contentView addSubview:imageView3];
        [cell.contentView addSubview:imageView4];   
    }

    for ( int i = 1; i <= j; i++ ) {
        imageView = (UIImageView *)[cell.contentView viewWithTag:i];
        imageView.image=nill
    }

    int photosInRow;

    if ( (indexPath.row < [tableView numberOfRowsInSection:indexPath.section] - 1) || ([sentence count] % 4 == 0) ) {
        photosInRow = 4;
    } else {
        photosInRow = [sentence count] % 4;
    }

    for ( int i = 1; i <=[sentence count]; i++ ){
        imageView = (UIImageView *)[cell.contentView viewWithTag:i];

        [self setImage1:imageView];
    }

    return cell;
}

Нажмитесобытие кнопки: -

-(void)showPopOver:(id)sender
{
    ModalView *mvc = [[ModalView alloc]init];

    [mvc settingParentButton:imageView];
    [mvc settingPop:detailViewPopover]; 

    // Present the popover from the button that was tapped in the detail view.
    [detailViewPopover presentPopoverFromRect:CGRectMake(0,0, 325, 650) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

    // Set the last button tapped to the current button that was tapped.


    [mvc release];  
}    

установка родительской кнопки события модального просмотра: -

-(void)settingParentButton:(UIImageView *)imageView {
    imageView1=imageView;
}

и выбор строки по пути индекса модального просмотра: -

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{ 
    NSLog(imageView1.tag);
    if (indexPath.row==0) {
        [imageView1 setImage:[UIImage imageNamed:[nsmResult objectAtIndex:indexPath.row]] ];    
    }
    if (indexPath.row==1) {
        [imageView1 setImage:[UIImage imageNamed:[nsmResult objectAtIndex:indexPath.row]] ];    
    }
    if (indexPath.row==2) {
        [imageView1 setImage:[UIImage imageNamed:[nsmResult objectAtIndex:indexPath.row]] ];

    }
    if (indexPath.row==3) {
        [imageView1 setImage:[UIImage imageNamed:[nsmResult objectAtIndex:indexPath.row]] ];    
    }
    [pop2 dismissPopoverAnimated:YES];
}

Пожалуйста, помогите. Если проблема с тегами, скажите, пожалуйста, как я могу проверить, какой тег выполняется в данный момент, и через который я могу получить представление изображения. Пожалуйста, ответьте.

1 Ответ

0 голосов
/ 07 октября 2011

В этом просмотре изображений при создании распределения памяти не следует давать авто-релиз, освободите вашу память в dealloc, ожидаемое изображение будет помещено в ваши случаи.

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info



{
    UIImage *im =  [info objectForKey:UIImagePickerControllerOriginalImage];


    self.imageView.image = im;

    UIImageWriteToSavedPhotosAlbum(im, nil, nil, nil);

    imageView.contentMode = UIViewContentModeScaleAspectFit;
    [[picker parentViewController] dismissModalViewControllerAnimated:YES];
}

@interface testpViewController : UIViewController
<UIImagePickerControllerDelegate, UINavigationControllerDelegate>

{
    IBOutlet    UIImageView     *imageView;
}

@property   (nonatomic, retain) UIImageView     *imageView;
...