zoukankan      html  css  js  c++  java
  • 【代码笔记】iOS-给背景图加上移动的手势

    一,工程图。

    二,效果图。

    三,代码。

    RootViewController.h

    #import <UIKit/UIKit.h>
    
    @interface RootViewController : UIViewController
    <UIGestureRecognizerDelegate>
    
    @end

     

    RootViewController.m

    复制代码
    #import "RootViewController.h"
    
    @interface RootViewController ()
    
    @end
    
    @implementation RootViewController
    
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        }
        return self;
    }
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view.
        
        //增加背景图
        [self addView];
       
    }
    #pragma -mark -functions
    //背景图
    -(void)addView
    {
        //红色的背景图
        UIView *parentView=[[UIView alloc]initWithFrame:CGRectMake(50, 100, 200, 200)];
        parentView.backgroundColor=[UIColor redColor];
        [self.view addSubview:parentView];
        
        [parentView setUserInteractionEnabled:YES];
        
        
        //移动的手势
        UIPanGestureRecognizer *panRcognize=[[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
        panRcognize.delegate=self;
        [panRcognize setEnabled:YES];
        [panRcognize delaysTouchesEnded];
        [panRcognize cancelsTouchesInView];
        
        [parentView addGestureRecognizer:panRcognize];
    }
    #pragma UIGestureRecognizer Handles
    - (void)handlePan:(UIPanGestureRecognizer *)recognizer {
        
        NSLog(@"--移动的手势-----");
        
    }
    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
    复制代码

     

  • 相关阅读:
    [BFS][51nod]1649 齐头并进
    [最短路] [洛谷] P1629 邮递员送信
    [HDUOJ] 1233 还是畅通工程
    [HDUOJ] 1873 看病要排队
    [树直径] [POJ] CowMarathon
    [暴搜] 树直径
    [模板] 最小生成树
    [洛谷] P1276 校门外的树(增强版)
    1140 Look-and-say Sequence (20 分)
    string与char数组互相转换(一)
  • 原文地址:https://www.cnblogs.com/yang-guang-girl/p/5260664.html
Copyright © 2011-2022 走看看