0

我会问你是否可以帮助我展示一些隐藏的视图。同样在我的应用程序中,我有 2 个隐藏视图:一个在左侧,第二个在右侧。我想通过使用 2 按钮和 2 滑动来显示这个隐藏视图(主视图应该跟随手指)。我在网上(网站是:http ://divcode.blogspot.it/2012/09/hidden-menu-part-2-following-finger.html )创建了一个示例代码,仅显示一个隐藏视图。这段代码向我展示了左侧的隐藏视图(我将主视图向右移动),如果我想看到右侧的隐藏视图应该怎么做?我将在这里发布我的代码:

视图控制器.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

视图控制器.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

1

使用 aUIPanGestureRecoginizer并使用手势的速度来决定滑动是从左到右还是从右到左,并相应地显示隐藏您的视图。

于 2013-06-12T09:59:43.853 回答