0

いくつかの隠れたビューを表示するのを手伝ってくれるかどうか尋ねます. また、私のアプリには 2 つの非表示のビューがあります。1 つは左側に、もう 1 つは右側にあります。2 つのボタンと 2 つのスワイプを使用して、この非表示のビューを表示したかった (メイン ビューは指をたどる必要があります)。Web (サイトはhttp://divcode.blogspot.it/2012/09/hidden-menu-part-2-following-finger.html ) で、非表示のビューを 1 つだけ表示するサンプル コードを作成しました。このコードは、左側に非表示のビューを表示します (メイン ビューを右側に移動します)。右側に非表示のビューを表示するにはどうすればよいですか? ここに私のコードを投稿します:

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UIScrollViewDelegate>
@property (weak, nonatomic) IBOutlet UIView *viewAllShow;
@property (weak, nonatomic) IBOutlet UIView *viewMain;
@property (weak, nonatomic) IBOutlet UIScrollView *viewScroll;
@property (weak, nonatomic) IBOutlet UIView *viewAbout;

- (IBAction)buttonAllShow:(id)sender;
- (IBAction)buttonInfo:(id)sender;
@end

ViewController.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
//    self.viewScroll.contentSize = self.viewAbout.frame.size;
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)viewDidAppear:(BOOL)animated {
}


#pragma mark - actions -
- (IBAction)buttonAllShow:(id)sender {
    // Controllo se la vista nascosta non è già visibile
    if (self.viewMain.frame.origin.x == 0) {
        // Chiamata alla funzione per la visualizzazione della vista nascosta
        [self showAllShowView];
    } else {
        // Chiamata alla funzione per nascondere la vista nascosta
        [self hideAllShowView];
    }
}

- (IBAction)buttonInfo:(id)sender {
    if (self.viewMain.frame.origin.x == 0) {
        [self showAboutView];
    } else {
        [self hideAboutView];
    }
}

#pragma mark - animations -
- (void)showAllShowView {
    // Faccio partire l'animazione
    [UIView animateWithDuration:0.5
                     animations:^{
                         [self.viewMain setFrame:CGRectMake(self.viewAllShow.frame.size.width, self.viewMain.frame.origin.y, self.viewMain.frame.size.width, self.viewMain.frame.size.height)];
                     }
     ];
}

- (void)hideAllShowView {
    [UIView animateWithDuration:0.5
                     animations:^ {
                         [self.viewMain setFrame:CGRectMake(0, self.viewMain.frame.origin.y, self.viewMain.frame.size.width, self.viewMain.frame.size.height)];
                     }
     ];
}

- (void)showAboutView {
    [UIView animateWithDuration:0.5
                     animations:^{
                         [self.viewMain setFrame:CGRectMake(self.viewAbout.frame.size.width, self.viewMain.frame.origin.y, self.viewMain.frame.size.width, self.viewMain.frame.size.height)];
                     }
     ];

}

- (void)hideAboutView {
    [UIView animateWithDuration:0.5
                     animations:^{
                         [self.viewMain setFrame:CGRectMake(0, self.viewMain.frame.origin.y, self.viewMain.frame.size.width, self.viewMain.frame.size.height)];
                     }
     ];

}

#pragma mark - touch event -
float difference;

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    CGPoint mainTouchPoint = [[touches anyObject] locationInView:self.viewMain];
    difference = mainTouchPoint.x;
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    // Ottengo le coordinate del punto dove ho toccato il display
    CGPoint pointInView = [[touches anyObject] locationInView:self.view];

    // Calcolo la differenza tra il punto toccato e la vista principale (viewMain)
    float xTarget = pointInView.x - difference;

    // Se la differenza è maggiore della dimensione x della vista nascosta => imposto il valore della differenza pari alla dimensione x della vista nascosta
    if (xTarget > self.viewAllShow.frame.size.width) {
        xTarget = self.viewAllShow.frame.size.width;
    } else if (xTarget < 0) {
        // Se la differenza è minore di zero => imposto la differenza a zero e faccio l'animazione
        xTarget = 0;
    }
    // Eseguo l'animazione
    [UIView animateWithDuration:0.5
                     animations:^{
                         [self.viewMain setFrame:CGRectMake(xTarget, self.viewMain.frame.origin.y, self.viewMain.frame.size.width, self.viewMain.frame.size.height)];
                     }
     ];

}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {

    // Ottengo le coordinate del punto toccato sullo schermo
    CGPoint endPoint = [[touches anyObject]locationInView:self.view];
    // Calcolo la differenza tra il punto toccato e la vista principale (viewMain)
    float xTarget = endPoint.x - difference;
    // Se la differenza è maggiore della metà della dimensione x della vista nascosta imposto la differenza pari a zero
    if (xTarget < self.viewAllShow.frame.size.width/2) {
        xTarget = 0;
    } else {
        // Altrimenti imposto la differenza pari alla dimensione x della vista nascosta
        xTarget = self.viewAllShow.frame.size.width;
    }
    // Eseguo l'animazione
    [UIView animateWithDuration:0.5
                     animations:^{
                         [self.viewMain setFrame:CGRectMake(xTarget, self.viewMain.frame.origin.y, self.viewMain.frame.size.width, self.viewMain.frame.size.height)];
                     }
     ];
}

@end

このリンクにアクセスすると、私のストーリーボードのスクリーンショットが表示されます: http://postimg.org/image/m0001j00t/

この問題の解決にご協力いただければ幸いです。ありがとうございました

4

1 に答える 1