国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android程序開發之給背景圖加上移動的手勢

2020-01-02 07:00:49
字體:
來源:轉載
供稿:網友

一,工程圖。


二,效果圖。


三,代碼。

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.}

以上代碼是有關Android程序開發之給背景圖加上移動的手勢的全部內容,希望對大家有所幫助!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 湖南省| 招远市| 探索| 从化市| 永仁县| 原阳县| 东光县| 于田县| 淳安县| 独山县| 大名县| 华容县| 栖霞市| 元阳县| 乌兰县| 曲阜市| 庆阳市| 镇赉县| 南平市| 开鲁县| 青铜峡市| 万全县| 吴堡县| 德阳市| 长兴县| 呼图壁县| 武冈市| 探索| 保德县| 永定县| 永德县| 扎赉特旗| 仙居县| 怀化市| 芒康县| 日喀则市| 剑阁县| 石台县| 东乌珠穆沁旗| 梓潼县| 林甸县|