Skip navigation.
 
mlRe: A problem of NSImageView
FROM : Bus Mini
DATE : Sun Jul 09 18:18:17 2006

>
>
>
>  But if I add *[ImageView setImage:otherImage]* before  *[ImageView
> setImage:screenImage];* then I can see screenImage  changed everytimes.
>


That is

-(void)workThread:(id)param
{

  while(1)
    {

      [ImageView setImage:otherImage];

      [self getImage];

      [ImageView setImage:screenImage];
    }
}

Then I see two iamges switching, and I can see the pixel in screenImage was
modified.



--
Yours sincerely
Mini Bus.

Related mailsAuthorDate
mlRe: A problem of NSImageView Bus Mini Jul 7, 17:23
mlRe: A problem of NSImageView Chris Hanson Jul 7, 22:38
mlRe: A problem of NSImageView Bus Mini Jul 9, 18:01
mlRe: A problem of NSImageView Bus Mini Jul 9, 18:18
mlRe: A problem of NSImageView Uli Kusterer Jul 11, 00:11