UIDynamic - 推動行為: UIPushBehavior

来源:http://www.cnblogs.com/bigshow1949/archive/2016/08/25/5806176.html
-Advertisement-
Play Games

用途: 從一個點移動到另外一個點; 相關屬性: mode : UIPushBehaviorModeContinuous //推移模式 angle : setAngle //推移角度 magnitude : setMagnitude //速度 每1個magnigude將會引起100/平方秒的加速度 圖 ...


用途:

     從一個點移動到另外一個點;

相關屬性:

    mode : UIPushBehaviorModeContinuous  //推移模式

    angle : setAngle  //推移角度

     magnitude : setMagnitude  //速度   每1個magnigude將會引起100/平方秒的加速度   

 

圖片說明:

p1 : squareView的中心點  p2 : 單擊的點  

促使squareView朝著p2移動,因為加了UICollisionBehavior,所以移動時又不會超過邊界

代碼:

 1 //
 2 //  YFPushBehaviorViewController.m
 3 //  BigShow1949
 4 //
 5 //  Created by apple on 16/8/25.
 6 //  Copyright © 2016年 BigShowCompany. All rights reserved.
 7 //
 8 
 9 #import "YFPushBehaviorViewController.h"
10 
11 @interface YFPushBehaviorViewController ()
12 @property(nonatomic,strong)UIDynamicAnimator *animator;
13 @property (nonatomic, strong) UIView *squareView;
14 @property (nonatomic, strong) UIPushBehavior *pushBehavior;
15 
16 @end
17 
18 @implementation YFPushBehaviorViewController
19 - (void)viewDidLoad {
20 
21     [super viewDidLoad];
22     self.view.backgroundColor = [UIColor whiteColor];
23 
24 }
25 
26 - (void)viewDidAppear:(BOOL)animated{
27     [super viewDidAppear:animated];
28     
29     // 創建一個正方形
30     self.squareView =[[UIView alloc] initWithFrame: CGRectMake(0.0f, 0.0f, 80.0f, 80.0f)];
31     self.squareView.backgroundColor = [UIColor greenColor];
32     self.squareView.center = self.view.center;
33     [self.view addSubview:self.squareView];
34     
35     // 視圖單機手勢
36     [self createGestureRecognizer];
37     
38     [self createAnimatorAndBehaviors];
39 }
40 
41 - (void) createGestureRecognizer{
42     UITapGestureRecognizer *tapGestureRecognizer =
43     [[UITapGestureRecognizer alloc] initWithTarget:self  action:@selector(handleTap:)];
44     [self.view addGestureRecognizer:tapGestureRecognizer];
45 }
46 
47 - (void) handleTap:(UITapGestureRecognizer *)paramTap{
48     
49     CGPoint tapPoint = [paramTap locationInView:self.view];  //p2
50     CGPoint squareViewCenterPoint = self.squareView.center;  //p1
51     
52     CGFloat deltaX = tapPoint.x - squareViewCenterPoint.x;
53     CGFloat deltaY = tapPoint.y - squareViewCenterPoint.y;
54     CGFloat angle = atan2(deltaY, deltaX);
55     [self.pushBehavior setAngle:angle];  //推移的角度
56     
57     //勾股
58     CGFloat distanceBetweenPoints =
59     sqrt(pow(tapPoint.x - squareViewCenterPoint.x, 2.0) +
60          pow(tapPoint.y - squareViewCenterPoint.y, 2.0));
61     //double pow(double x, double y);計算以x為底數的y次冪
62     //double sqrt (double);開平方
63     
64     //推力的大小(移動速度)
65     [self.pushBehavior setMagnitude:distanceBetweenPoints / 50.0f];
66     //每1個magnigude將會引起100/平方秒的加速度,這裡分母越大,速度越小
67     
68 }
69 - (void) createSmallSquareView{
70     self.squareView =[[UIView alloc] initWithFrame: CGRectMake(0.0f, 0.0f, 80.0f, 80.0f)];
71     
72     self.squareView.backgroundColor = [UIColor greenColor];
73     self.squareView.center = self.view.center;
74     
75     [self.view addSubview:self.squareView];
76 }
77 - (void) createAnimatorAndBehaviors{
78     self.animator = [[UIDynamicAnimator alloc] initWithReferenceView:self.view];
79     
80     /* Create collision detection */
81     UICollisionBehavior *collision = [[UICollisionBehavior alloc]
82                                       initWithItems:@[self.squareView]];
83     collision.translatesReferenceBoundsIntoBoundary = YES;
84     
85     self.pushBehavior = [[UIPushBehavior alloc]
86                          initWithItems:@[self.squareView]
87                          mode:UIPushBehaviorModeContinuous];
88     
89     [self.animator addBehavior:collision];
90     [self.animator addBehavior:self.pushBehavior];
91 }
92 
93 @end

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.當你在androidmanifest裡面定義了一個或多個action時 你使用隱式意圖其他activity或者service時,規定你隱式裡面的action必須匹配XML中定義的action,可以只匹配XML文件一個就行 2.當你在androidmanifest裡面定義了一個或多個categor ...
  • 項目簡介 小食光定位為一款集美食,社交,LBS服務於一體的美食推薦APP。為你發現周邊美食的同時提供一個吃貨分享的平臺。 APP截圖 功能模塊 美食推薦 :提供基礎的美食信息查詢; 商家推薦 : 基於用戶當前位置推薦周邊的人們店家; 百度地圖API :提供基礎的周邊店家檢索,定位服務; 美食分享:美 ...
  • 一:首先查看一下關於UITextView的定義 UITextView是繼承於UIScrollView,並且遵循UITextInput的協議;而UIScrollView是繼承於UIView,並且遵循NSCoding協議;上面有些屬性跟UITextField是一樣的,就沒有標註出來;關於UITextIn ...
  • 一:首先查看一下關於UITextField的定義 UITextField是繼承於UIControl,並且遵循NSCoding及UITextInput的協議;UITextInput的協議作用是用來輔助鍵盤輸入得協議,在需要用到鍵盤輸入得地方都需要實現這個協議; 知識點1:UITextBorderSty ...
  • 歸檔是指一種形式的序列化,專門編寫用於保存數據的任何對象都應該支持歸檔。使用對模型對象進行歸檔的技術可以輕鬆將複雜的對象寫入文件,然後再從中讀取它們。 只要在類中實現的每個屬性都是標量或者都是遵循NSCoding協議的某個類的實例,你就可以對整個對象進行完全歸檔。大多數的Foundation和Coc ...
  • 直接上代碼: ...
  • 在自定義UIScrollView中, ...
  • 摘要: 本文為作者原創,未經允許不得轉載;原文由作者發表在博客園:http://www.cnblogs.com/panxiaochun/p/5802814.html setMeteringArea() android camera 類里的meteringArea可以用來設置自動白平衡和自動曝光補償, ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...