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 Gesture Recognizer (UIGestureRecognizer) - (Objective-C , iPhone)

iOS/iPhone Gesture Recognizer (UIGestureRecognizer) - (Objective-C , iPhone) ในการเขียนiOS App บน iPhone และ iPad เราจำเป็นจะต้องเข้าใจและรู้จักการทำงานของ Gesture ที่จะช่วยในการจัดการรับคำสั่งจากผู้ใช้ โดย Gesture เป็นระบบสัมผัส ผ่าน Touch Screen ในทิศทางต่าง ๆ และใน iOS จะมี Subclass ที่มีชื่อว่า UIGestureRecognizer ที่จะเข้ามาจัดการในการเขียนโปรแกรมบน iOS ร่วมกับ Touch Screen ที่จะสามารถตรวจสอบเหตุการณ์ต่าง ๆ ง่ายยิ่งขึ้น และยิ่งถ้าได้ใช้ผ่าน Storyboard ด้วยแล้ว การใช้งาน Gesture จะง่ายและสะดวกมาก

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)


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


UIGestureRecognizer ที่เป็น Subclass จะประกอบด้วย Class ย่อย ๆ อีกประมาณ 6 ตัว ในการที่จะใช้สำหรับตรวจสอบสอบการ Touch Screen ด้วย Gesture ในเหตุการณ์ต่าง ๆ เช่น

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

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

iOS/iPhone Long Press Gesture Recognizer (UILongPressGestureRecognizer)

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

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

iOS/iPhone Rotation Gesture Recognizer (UIRotationGestureRecognizer)









Example การใช้งาน UIGestureRecognizer ร่วมกับ UITapGestureRecognizer ในการสลับรูปภาพ

    UIGestureRecognizer *gestureRecognizer = [[UITapGestureRecognizer alloc]
                                              initWithTarget:self
                                              action:@selector(gestureHandleAction:)];
    [[self view] addGestureRecognizer:gestureRecognizer];

    -(void) gestureHandleAction:(UIGestureRecognizer *) sender {
  
    }

เป็นการดักจับ Event ของ Tap Gesture Recognizer

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

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

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

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

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

ตอนนี้ได้โปรเจคเปล่าๆ ที่ View ยังเป็นหน้าจอว่าง ๆ

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

เนื่องจากโปรเขคนี้จะใช้การสลับรูปภาพ 2 รุปด้วยการ Tap (คลิก) จะทำการ Add รุปเข้ามา 2 รูป

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

เลือกรูปที่ต้องการขึ้นมา 2 รูป

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

ได้รูปภาพเข้ามาในโปรเจค

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

ลาก Image View (UIImageView) เข้ามาวางไว้บน View

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

ใน Class ของ .h ทำการเชื่อม IBOutlet ของ Image View (UIImageView)

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

ใส่ Code ง่าย ๆ ดังรูป ซึ่งจะเป็นการสลับค่าของ tapIsActive จาก TRUE เป็น FALSE และ FALSE เป็น TRUE พร้อม ๆ กับการเลือกรูปมาแสดงผล








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

ViewController.h
//
//  ViewController.h
//  gestureRecognizer
//
//  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
//  gestureRecognizer
//
//  Created by Weerachai on 11/17/55 BE.
//  Copyright (c) 2555 Weerachai. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()
{
    BOOL tapIsActive;
}

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
    
    tapIsActive = TRUE;
    
    UIGestureRecognizer *gestureRecognizer = [[UITapGestureRecognizer alloc]
                                              initWithTarget:self
                                              action:@selector(gestureHandleAction:)];
    [[self view] addGestureRecognizer:gestureRecognizer];
}

-(void) gestureHandleAction:(UIGestureRecognizer *) sender {
    
    NSLog(@"Gesture Handling");
    
    if(tapIsActive == TRUE)
    {
        imgView.image = [UIImage imageNamed:@"girl1.jpg"];
        tapIsActive = FALSE;
    }
    else
    {
        imgView.image = [UIImage imageNamed:@"girl2.jpg"];
        tapIsActive = TRUE;
    }
    
}

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

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


Screenshot

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

หน้าจอ View แรก ตอนนี้ยังว่าง

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

คลิกหรือ Tap บนหน้าจอเพื่อแสดงรูปภาพ

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

เมื่อคลิกหรือ Tap อีกครั้ง รูปภาพก็จะกลับไปมา

iOS/iPhone Gesture Recognizer (UIGestureRecognizer)

อันนี้เป็น Log ที่ถูกเขียนด้วย NSLog ในการดักจับ Gesture


.

   
Share


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


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-11-20 10:00:18 / 2017-03-25 23:44:34
  Download : Download  iOS/iPhone Gesture Recognizer (UIGestureRecognizer)  - (Objective-C , iPhone)
 Sponsored Links / Related

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

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

 
iOS/iPhone Pan Gesture Recognizer (UIPanGestureRecognizer) Panning or dragging
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 อัตราราคา คลิกที่นี่