Прокрутка UIScrollView на внешнем экране, подключенном к iPad - PullRequest
1 голос
/ 08 февраля 2011

Эй.Я достиг создания программного UIScrollView с масштабированием, но теперь я пытался перенести прокручиваемое / масштабируемое изображение на внешний экран, если он подключен.

@implementation MapVC

UIScrollView *mapScrollView;

UIImageView *mapImageView;

UIImageView *mapImageViewEx;

CGFloat lastScale = 0;

NSMutableArray *map_List;


- (id)initWithFrame:(CGRect)frame {

    self = [super initWithFrame:frame];
    if (self) {

        mainMenuAppDelegate *del = (mainMenuAppDelegate *)[[UIApplication sharedApplication] delegate];

        map_List = [[NSMutableArray alloc] init];
        [map_List addObject:@"Pacific_Map.png"];
        [map_List addObject:@"Atlantic_Map.png"];


        CGRect mapScrollViewFrame = CGRectMake(0, 0, 1024, 768);

        mapScrollView = [[UIScrollView alloc] initWithFrame:mapScrollViewFrame];

        mapScrollView.backgroundColor = [UIColor blackColor];

        [mapScrollView setDelegate:(id<UIScrollViewDelegate>)self];

        mapScrollView.contentSize = CGSizeMake(2437, 1536);

        mapScrollView.bounces = NO;

        mapScrollView.bouncesZoom = NO;

        mapScrollView.minimumZoomScale = .5;

        mapScrollView.maximumZoomScale = 1.5;

        [mapScrollView setZoomScale:mapScrollView.minimumZoomScale];

        UIImage *mapImage = [UIImage imageNamed:[map_List objectAtIndex:mapNum]];
        mapImageView = [[UIImageView alloc] initWithImage: mapImage];
        [mapImage release];

        if(exScreenEnabled==1){
            UIImage *mapImageEx = [UIImage imageNamed:[map_List objectAtIndex:mapNum]];
            mapImageViewEx = [[UIImageView alloc] initWithImage: mapImageEx];
            [mapImageEx release];

            UIView *containerExViewP = (UIView*)[del.switchExVC.view viewWithTag:9000];
            [containerExViewP addSubview:mapImageViewEx];
        }else{
            [mapScrollView addSubview:mapImageView];
        }



        [self addSubview:mapScrollView];

        mapImageView.userInteractionEnabled = YES;



        UIImage *footerMapIMG = [UIImage imageNamed:@"footer_map_alternate.png"];
        UIImageView *footerMapView = [[UIImageView alloc] initWithImage:(UIImage *)footerMapIMG];
        CGRect footerMapFrame = CGRectMake(0, 686, 213, 82);
        footerMapView.frame = footerMapFrame;
        [self addSubview:footerMapView]; 
        footerMapView.image = footerMapIMG; 

        [footerMapView release];


        CGRect backBTNFrame = CGRectMake(20, 714, 140, 52); 
        UIButton *MAP_backButton = [[UIButton alloc] init];
        MAP_backButton.frame = backBTNFrame;
        UIImage *MAP_backButtonIMG = [UIImage imageNamed:@"button_back.png"];
        [MAP_backButton setImage:MAP_backButtonIMG forState:UIControlStateNormal];
        MAP_backButton.backgroundColor = [UIColor clearColor];
        [self addSubview:MAP_backButton];

        [MAP_backButton release];


        [MAP_backButton addTarget:del.switchVC 
                           action:@selector(gotoMapAndListChooser)
                       forControlEvents:UIControlEventTouchUpInside];
    }
    return self;
}
- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView{
    if(exScreenEnabled==1){
        return mapImageViewEx;
    }else{
        return mapImageView;
    }
}

(Извините, мне не повезлоотформатировать его, чтобы он выглядел прямо на этом сайте)

Если видеокабель подключен к iPad, на iPad нет изображения, чего я и хочу.Изображение на внешнем экране корректно увеличивается, когда вы делаете жест на iPad, но я не могу понять, как заставить его прокручиваться.Заранее спасибо.

edit: у меня теперь есть это -

@implementation MapVC

UIScrollView *mapScrollView;

UIImageView *mapImageView;
UIImageView *mapImageViewEx;

CGFloat lastScale = 0;

NSMutableArray *map_List;

int touchesNum = 0;

-(void)touchesBegan:(NSSet *)theTouches withEvent:(UIEvent *)event {
    NSSet *touches = [event allTouches];
    touchesNum=[touches count];
    NSLog(@"number of touches %i", touchesNum);
}


- (id)initWithFrame:(CGRect)frame {

    self = [super initWithFrame:frame];
    if (self) {



        mainMenuAppDelegate *del = (mainMenuAppDelegate *)[[UIApplication sharedApplication] delegate];

        map_List = [[NSMutableArray alloc] init];
        [map_List addObject:@"Pacific_Map.png"];
        [map_List addObject:@"Atlantic_Map.png"];


        CGRect mapScrollViewFrame = CGRectMake(0, 0, 1024, 768);

        mapScrollView = [[UIScrollView alloc] initWithFrame:mapScrollViewFrame];

        mapScrollView.backgroundColor = [UIColor blackColor];

        [mapScrollView setDelegate:(id<UIScrollViewDelegate>)self];

        mapScrollView.contentSize = CGSizeMake(2437, 1536);

        mapScrollView.bounces = NO;

        mapScrollView.bouncesZoom = NO;

        mapScrollView.minimumZoomScale = .5;

        mapScrollView.maximumZoomScale = 1.5;

        [mapScrollView setZoomScale:mapScrollView.minimumZoomScale];

        UIImage *mapImage = [UIImage imageNamed:[map_List objectAtIndex:mapNum]];
        mapImageView = [[UIImageView alloc] initWithImage: mapImage];
        [mapImage release];

        if(exScreenEnabled==1){
            UIImage *mapImageEx = [UIImage imageNamed:[map_List objectAtIndex:mapNum]];
            mapImageViewEx = [[UIImageView alloc] initWithImage: mapImageEx];
            [mapImageEx release];

            UIView *containerExViewP = (UIView*)[del.switchExVC.view viewWithTag:9000];
            [containerExViewP addSubview:mapImageViewEx];
        }else{
            [mapScrollView addSubview:mapImageView];
        }



        [self addSubview:mapScrollView];

        mapImageView.userInteractionEnabled = YES;



        UIImage *footerMapIMG = [UIImage imageNamed:@"footer_map_alternate.png"];
        UIImageView *footerMapView = [[UIImageView alloc] initWithImage:(UIImage *)footerMapIMG];
        CGRect footerMapFrame = CGRectMake(0, 686, 213, 82);
        footerMapView.frame = footerMapFrame;
        [self addSubview:footerMapView]; 
        footerMapView.image = footerMapIMG; 

        [footerMapView release];


        CGRect backBTNFrame = CGRectMake(20, 714, 140, 52); 
        UIButton *MAP_backButton = [[UIButton alloc] init];
        MAP_backButton.frame = backBTNFrame;
        UIImage *MAP_backButtonIMG = [UIImage imageNamed:@"button_back.png"];
        [MAP_backButton setImage:MAP_backButtonIMG forState:UIControlStateNormal];
        MAP_backButton.backgroundColor = [UIColor clearColor];
        [self addSubview:MAP_backButton];

        [MAP_backButton release];


        [MAP_backButton addTarget:del.switchVC 
                           action:@selector(gotoMapAndListChooser)
                       forControlEvents:UIControlEventTouchUpInside];

        mapScrollView.multipleTouchEnabled = YES;
    }
    return self;
}


- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView{
    if(exScreenEnabled==1){
        return mapImageViewEx;
    }else{
        return mapImageView;
    }
}

- (void)scrollViewDidScroll:(UIScrollView *)inscrollView{
    if(touchesNum==0){
        CGPoint p = mapScrollView.contentOffset;
        mapImageViewEx.frame = CGRectMake((p.x*-1), (p.y*-1), mapImageViewEx.frame.size.width, mapImageViewEx.frame.size.height); 
    }
}



- (void)dealloc {

    [mapScrollView release];
    [mapImageView release];

    [map_List release];


    [super dealloc];
}

@end

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

1 Ответ

1 голос
/ 09 февраля 2011

Получилось работать с изображением на iPad и на внешнем экране.Я, вероятно, поменяю его на прямоугольную область, потому что изображение требует больших ресурсов как для iPad, так и для внешнего экрана.

#import "exGlobal.h"

#import "mapVC.h"

#import "switchVC.h"
#import "switchExVC.h"
#import "mainMenuAppDelegate.h"


#import <MobileCoreServices/MobileCoreServices.h>

@implementation MapVC

UIScrollView *mapScrollView;

UIImageView *mapImageView;
UIImageView *mapImageViewEx;

CGFloat lastScale = 0;

NSMutableArray *map_List;

static int toggleScroll = 1;


- (id)initWithFrame:(CGRect)frame {

    self = [super initWithFrame:frame];
    if (self) {

        mainMenuAppDelegate *del = (mainMenuAppDelegate *)[[UIApplication sharedApplication] delegate];

        map_List = [[NSMutableArray alloc] init];
        [map_List addObject:@"Pacific_Map.png"];
        [map_List addObject:@"Atlantic_Map.png"];


        CGRect mapScrollViewFrame = CGRectMake(0, 0, 1024, 768);

        mapScrollView = [[UIScrollView alloc] initWithFrame:mapScrollViewFrame];

        mapScrollView.backgroundColor = [UIColor blackColor];

        [mapScrollView setDelegate:(id<UIScrollViewDelegate>)self];

        mapScrollView.contentSize = CGSizeMake(2437, 1536);

        mapScrollView.bounces = NO;

        mapScrollView.bouncesZoom = NO;

        mapScrollView.minimumZoomScale = .5;

        mapScrollView.maximumZoomScale = 1.5;

        [mapScrollView setZoomScale:mapScrollView.minimumZoomScale];

        UIImage *mapImage = [UIImage imageNamed:[map_List objectAtIndex:mapNum]];
        mapImageView = [[UIImageView alloc] initWithImage: mapImage];
        [mapImage release];

        if(exScreenEnabled==1){
            UIImage *mapImageEx = [UIImage imageNamed:[map_List objectAtIndex:mapNum]];
            mapImageViewEx = [[UIImageView alloc] initWithImage: mapImageEx];
            [mapImageEx release];

            UIView *containerExViewP = (UIView*)[del.switchExVC.view viewWithTag:9000];
            [containerExViewP addSubview:mapImageViewEx];
            [mapScrollView addSubview:mapImageView]; // see if this works ok on iPad. Map on TV AND iPad.
        }else{
            [mapScrollView addSubview:mapImageView];
        }

        [self addSubview:mapScrollView];

        mapImageView.userInteractionEnabled = YES;


        UIImage *footerMapIMG = [UIImage imageNamed:@"footer_map_alternate.png"];
        UIImageView *footerMapView = [[UIImageView alloc] initWithImage:(UIImage *)footerMapIMG];
        CGRect footerMapFrame = CGRectMake(0, 686, 213, 82);
        footerMapView.frame = footerMapFrame;
        [self addSubview:footerMapView]; 
        footerMapView.image = footerMapIMG; 

        [footerMapView release];


        CGRect backBTNFrame = CGRectMake(20, 714, 140, 52); 
        UIButton *MAP_backButton = [[UIButton alloc] init];
        MAP_backButton.frame = backBTNFrame;
        UIImage *MAP_backButtonIMG = [UIImage imageNamed:@"button_back.png"];
        [MAP_backButton setImage:MAP_backButtonIMG forState:UIControlStateNormal];
        MAP_backButton.backgroundColor = [UIColor clearColor];
        [self addSubview:MAP_backButton];

        [MAP_backButton release];


        [MAP_backButton addTarget:del.switchVC 
                           action:@selector(gotoMapAndListChooser)
                       forControlEvents:UIControlEventTouchUpInside];

        mapScrollView.multipleTouchEnabled = YES;
    }
    return self;
}


- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView{
    return mapImageView;
}

-(void)scrollViewDidZoom:(UIScrollView *)scrollView {
    if(exScreenEnabled==1){
        CGPoint p = mapScrollView.contentOffset;
        mapImageViewEx.frame = CGRectMake((p.x*-1), (p.y*-1), mapImageView.frame.size.width, mapImageView.frame.size.height);
    }
}

- (void)scrollViewDidScroll:(UIScrollView *)inscrollView{   
    if(exScreenEnabled==1 && toggleScroll==1){
        CGPoint p = mapScrollView.contentOffset;
        mapImageViewEx.frame = CGRectMake((p.x*-1), (p.y*-1), mapImageView.frame.size.width, mapImageView.frame.size.height);

    }
}

- (void)scrollViewWillBeginZooming:(UIScrollView *)theScrollView withView:(UIView *)view{
    NSLog(@"BEGIN ZOOMING");
    toggleScroll=0;
}

- (void)scrollViewDidEndZooming:(UIScrollView *)theScrollView withView:(UIView *)view atScale:(float)scale{
    NSLog(@"END ZOOMING");
    toggleScroll=1;
} 




- (void)dealloc {

    [mapScrollView release];
    [mapImageView release];

    [map_List release];

    [super dealloc];
}

@end

Я нажал пробел (4) раза для кода, и NOPE не работает, переполнение стека все еще сломано.:)

...