Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer) Panning or dragging

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer) Panning or dragging สำหรับ Pan Gesture เป็น Gesture บน iOS ที่เกิดขึ้นในรูปแบบของ Paning หรือ Dragging ถ้าจะเข้าใจง่าย ๆ ก็คือการคลิกที่ Object ต่าง ๆ แล้วลากไปยังในตำแหน่งต่าง ๆ บนหน้าจอ Touch Screen โดย Pan Gesture จะใช้ Class ของ (UIPanGestureRecognizer) ในการตรวจสอบจับ Event ที่เกิดขึ้น

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer) Panning or dragging


Pan Gesture (UIPanGestureRecognizer) เป็น Event ที่เกิดขึ้นได้ในหน่วยทุก ๆ ตำแหน่ง บนหน้าจอ คือทุก ๆ ทั้งที่ทำการลากและ ย้ายตำแหน่งต่าง ๆ บนหน้าจอ Event ของ Pan Gesture ก็จะเกิดขึ้น

Pan Gesture (UIPanGestureRecognizer)
- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
     
    // Pan Gesture
    UIPanGestureRecognizer *panGuesture = [[UIPanGestureRecognizer alloc]
                                           initWithTarget: self
                                           action: @selector(panGuestureHandle:)];
    [panGuesture setMinimumNumberOfTouches:1];
    [panGuesture setMaximumNumberOfTouches:1];
    [[self view] addGestureRecognizer:panGuesture];
}

-(void) panGuestureHandle:(UIPanGestureRecognizer *) sender {
    
    NSLog(@"Pan Gesture Handling");

}


Example การใช้ Pan Gesture (UIPanGestureRecognizer) หรือการ Panning or dragging

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เริ่มต้นด้วยการสร้าง Application บน Xcode แบบ Single View Application








iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เลือกและไม่เลือกดังรูป

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

ตอนนี้หน้าจอของ View ยังว่าง ๆ

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

ให้ทำการ Add รูปภาพเข้ามาใน Project

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

ลาก Object ของ Image View มาวางไว้ในหน้าจอ View

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เลือกรูปภาพเพื่อแสดงบน Image View

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

Code ทั้งหมดของ .h และ .m ในภาษา Objective-C

ViewController.h
//
//  ViewController.h
//  panGesture
//
//  Created by Weerachai on 11/17/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
{
    IBOutlet UIImageView *imgView;
}

@end


ViewController.m
//
//  ViewController.m
//  panGesture
//
//  Created by Weerachai on 11/17/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
     
    // Pan Gesture
    UIPanGestureRecognizer *panGuesture = [[UIPanGestureRecognizer alloc]
                                           initWithTarget: self
                                           action: @selector(panGuestureHandle:)];
    [panGuesture setMinimumNumberOfTouches:1];
    [panGuesture setMaximumNumberOfTouches:1];
    [[self view] addGestureRecognizer:panGuesture];
}

-(void) panGuestureHandle:(UIPanGestureRecognizer *) sender {
    
    NSLog(@"Pan Gesture Handling");
    
    UIPanGestureRecognizer *pangesture = (UIPanGestureRecognizer *)sender;
    CGPoint translation = [pangesture translationInView:self.view];
    
    CGPoint imageViewPosition = imgView.center;
    imageViewPosition.x += translation.x;
    imageViewPosition.y += translation.y;
    
    imgView.center = imageViewPosition;
    [pangesture setTranslation:CGPointZero inView:self.view];
}

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

- (void)dealloc {
    [imgView release];
    [super dealloc];
}
@end









Screenshot

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เมื่อทำการ Pan หรือ Dragging

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เมื่อทำการ Pan หรือ Dragging

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เมื่อทำการ Pan หรือ Dragging

iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)

เป็น Log ของ NSLog


.

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-11-20 10:02:17 / 2017-03-26 09:54:02
  Download : Download  iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer)  Panning or dragging
 Sponsored Links / Related

 
iOS/iPhone Swipe Gesture and Storyboard , View (Objective-C, iPhone, iPad)
Rating :

 
iOS/iPhone Gesture Recognizer (UIGestureRecognizer) - (Objective-C , iPhone)
Rating :

 
iOS/iPhone Swipe Gesture Recognizer (UISwipeGestureRecognizer) Swipe Left / Right / Up / Down
Rating :

 
iOS/iPhone Rotation Gesture Recognizer (UIRotationGestureRecognizer)
Rating :

 
iOS/iPhone Pinch Gesture Recognizer (UIPinchGestureRecognizer) Pinching in and out (for zooming a view)
Rating :

 
iOS/iPhone Gesture and Image View Slide Show - (Objective-C , iPhone)
Rating :

 
iOS/iPhone Tap Gesture Recognizer (UITapGestureRecognizer) Tap and Double Tap
Rating :

 
iOS/iPhone Long Press Gesture Recognizer (UILongPressGestureRecognizer)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่