ios - 使用双击切换全屏操作

标签 ios uiview toggle fullscreen

寻找一种方法来实现双击可逆的“全屏”操作,但我没有成功!

更详细地说,有 2 个 UIView : - topViewContainer - 底部 View 容器

当我在 super View 上双击时, View “bottomViewContainer”扩展到全屏,然后我再次双击, View 恢复到原来的大小。

它应该在纵向模式和横向模式下工作!

这是我到目前为止所做的:

-(void)handleDoubleTap:(UITapGestureRecognizer *)sender {
if ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeLeft || [[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeRight) {
    if (sender.numberOfTapsRequired == 2){

         NSLog(@"if gesture up - LS");

        [UIView animateWithDuration:0.5
                              delay:0.1
                            options:UIViewAnimationOptionBeginFromCurrentState
                         animations:^{
                             topContainerView.frame = CGRectMake(0.0, -160.0, 480.0, 244.0);
                             bottomContainerView.frame = CGRectMake(0.0, 0.0, 480.0, 300.0);}
                         completion:^(BOOL finished){
                           NSLog(@"%f,%f",bottomContainerView.frame.size.width,bottomContainerView.frame.size.height);                                   
                         }];

    } else if (sender.numberOfTapsRequired == 2) {

        NSLog(@"else if gesture down - LS");

        [UIView animateWithDuration:0.5
                              delay:0.1
                            options:UIViewAnimationOptionBeginFromCurrentState
                         animations:^{
                             topContainerView.frame = CGRectMake(0.0, -160.0, 480.0, 244.0);
                             bottomContainerView.frame = CGRectMake(0.0, 84.0, 480.0, 216.0);}
                         completion:^(BOOL finished){
                            NSLog(@"%f,%f",bottomContainerView.frame.size.width,bottomContainerView.frame.size.height); 
                         }];
    }
}
else if ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationPortrait) {
    if (sender.numberOfTapsRequired == 2) {

        NSLog(@"if gesture down - PT");

        [UIView animateWithDuration:0.5
                          delay:0.1
                        options:UIViewAnimationOptionBeginFromCurrentState
                     animations:^{
                         topContainerView.frame = CGRectMake(0.0, 0.0, 320.0, 244.0);
                         bottomContainerView.frame = CGRectMake(0.0, 0.0, self.view.frame.size.width, 640.0);
                     }
                     completion:^(BOOL finished){
                         NSLog(@"%f,%f",bottomContainerView.frame.size.width,bottomContainerView.frame.size.height);
                     }];
     }
    else if (sender.numberOfTapsRequired == 2) {

        NSLog(@"else if gesture up - PT");

        [UIView animateWithDuration:0.5
                              delay:0.1
                            options:UIViewAnimationOptionBeginFromCurrentState
                         animations:^{
                             topContainerView.frame = CGRectMake(0.0, 0.0, 320.0, 244.0);
                             bottomContainerView.frame = CGRectMake(0.0, 244.0, self.view.frame.size.width, 216.0);
                         }
                         completion:^(BOOL finished){
                            NSLog(@"%f,%f",bottomContainerView.frame.size.width,bottomContainerView.frame.size.height); 
                         }];

    }
}        

最佳答案

试试这段代码:

#import "ViewController.h"

@interface ViewController (){
    UIView *topContainerView;
    UIView *bottomContainerView;

    CGRect initialTopContainerView;
    CGRect initialBottomContainerView;

    BOOL isFullScreen;
}

@end

@implementation ViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization

        CGSize result = [[UIScreen mainScreen] bounds].size;

        topContainerView = [[UIView alloc]initWithFrame:CGRectMake(0.0, 0.0, result.width, result.height/2)];
        topContainerView.backgroundColor = [UIColor redColor];
        topContainerView.tag = 1;
        [self.view addSubview:topContainerView];

        bottomContainerView = [[UIView alloc]initWithFrame:CGRectMake(0.0, result.height/2, result.width, result.height/2)];
        bottomContainerView.backgroundColor = [UIColor blueColor];
        bottomContainerView.tag = 2;
        [self.view addSubview:bottomContainerView];

        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleDoubleTap:)];
        tap.numberOfTapsRequired = 2;
        [bottomContainerView addGestureRecognizer:tap];

        UITapGestureRecognizer *tap2 = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleDoubleTap:)];
        tap2.numberOfTapsRequired = 2;
        [topContainerView addGestureRecognizer:tap2];

        initialTopContainerView = bottomContainerView.frame;
        initialBottomContainerView = topContainerView.frame;

        isFullScreen = false;

    }
    return self;
}

-(void)handleDoubleTap:(UITapGestureRecognizer *)sender {

    CGSize result = [[UIScreen mainScreen] bounds].size;

    int heightSreen = result.height;
    int widthSreen = result.width;

    if ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeLeft || [[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeRight) {
        heightSreen = result.width;
        widthSreen = result.height;
    }

    if (sender.numberOfTapsRequired == 2) {

        CGRect newFrameTop;
        CGRect newFrameBottom;

        isFullScreen = !isFullScreen;

        if (isFullScreen) {

            if (sender.view.tag == 1) {
                newFrameTop = CGRectMake(0, 0, widthSreen, heightSreen);
                newFrameBottom = CGRectMake(0, heightSreen, widthSreen, 0);
            }else{
                newFrameTop = CGRectMake(0, 0, widthSreen, 0);
                newFrameBottom = CGRectMake(0, 0, widthSreen, heightSreen);
            }

            [UIView animateWithDuration:0.5
                                  delay:0.1
                                options:UIViewAnimationOptionBeginFromCurrentState
                             animations:^{
                                 topContainerView.frame = newFrameTop;
                                 bottomContainerView.frame = newFrameBottom;
                             }completion:nil];

        }else{

            [UIView animateWithDuration:0.5
                                  delay:0.1
                                options:UIViewAnimationOptionBeginFromCurrentState
                             animations:^{
                                 topContainerView.frame = CGRectMake(0.0, 0.0, widthSreen, heightSreen/2);
                                 bottomContainerView.frame = CGRectMake(0.0, heightSreen/2, widthSreen, heightSreen/2);
                             }completion:nil];

        }

    }

}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
}

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

@end

关于ios - 使用双击切换全屏操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17551856/

相关文章:

ios - 无法识别无法识别的选择器错误的原因

swift - 添加带有约束的 subview 不起作用

javascript - 如何打开/关闭? (JavaScript)

ios - 在 iOS 中选择适当的多线程技术

android - 开发支持蓝牙的跨移动应用程序的最佳方式是什么?

iphone - 自定义 UITableViewCell 中的自定义 UIView

javascript - jquery:切换 child onclick

css - 如何切换 div 以使用 CSS 显示内容

ios - 在将 View Controller 推送到导航堆栈之前调用 viewDidAppear()

ios - 如何动态设置强制触摸标题