• 在scrollview中双击定点放大的代码


    双击放大是 iPhone 的一个基本操作,第三方程序里引入这一功能的话,主要是在 scrollview 呈现一张图片或者 PDF 页面时,双击可以放大,主要代码如下

    - (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale
    {
        NSLog(@"%s", _cmd);
        
        CGFloat zs = scrollView.zoomScale;
        zs = MAX(zs, 0.1);
        zs = MIN(zs, 5.0);    
        
        [UIView beginAnimations:nil context:NULL];
        [UIView setAnimationDuration:0.3];        
        scrollView.zoomScale = zs;    
        [UIView commitAnimations];
    }

    #pragma mark -
    #pragma mark === UITouch Delegate ===
    #pragma mark -
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
        //NSLog(@"%s", _cmd);
        
        UITouch *touch = [touches anyObject];
        
        if ([touch tapCount] == 2) 
        {
            //NSLog(@"double click");
            
            CGFloat zs = self.zoomScale;
            zs = (zs == 1.0) ? 2.0 : 1.0;
            
            [UIView beginAnimations:nil context:NULL];
            [UIView setAnimationDuration:0.3];            
            self.zoomScale = zs;    
            [UIView commitAnimations];
        }
    }

     
     
    本文转载至 http://www.cocoachina.com/iphonedev/sdk/2010/1028/2259.html
  • 相关阅读:
    cocos2d-x 坐标系
    Linux 用户和用户组
    Linux 挂载分区 + swap 分区
    Linux 分区 磁盘分区与格式化
    Linux MBR分区(重点知识)
    Linux -磁盘管理 ip http://blog.csdn.net/xh16319/article/details/17272455
    Linux 底行模式常用命令
    Linux Bash 通配符
    Linux Bash 的基本功能 管道符
    Linux Bash的基本功能 输出重定向
  • 原文地址:https://www.cnblogs.com/Camier-myNiuer/p/3323603.html
Copyright © 2020-2023  润新知