iOS觸摸事件的使用詳解

來源:互聯網
上載者:User

觸摸事件在iOS中是最常用的事件,這裡我們來介紹下觸摸事件。

在下面的例子中定義UIImageView。首先我們在TouchEventViewController中添加觸摸事件,並利用觸摸移動事件來移動Image,具體代碼如下:

@implementation TouchEvenViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    
    UIImageView * _image=[[KCImage alloc]initWithFrame:CGRectMake(50, 50, 150, 169)];
    [_image setImage:[UIImage imageName:@"zmit"]];
    [self.view addSubview:_image];
}
 
#pragma mark - 視圖控制器的觸摸事件
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    NSLog(@"開始觸摸");
}
 
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
    //取得一個觸摸對象(對於多點觸摸可能有多個對象)
    UITouch *touch=[touches anyObject];
    //取得當前位置
    CGPoint current=[touch locationInView:self.view];
    //取得前一個位置
    CGPoint previous=[touch previousLocationInView:self.view];
    //移動前的中點位置
    CGPoint center=_image.center;
    //移動位移量
    CGPoint offset=CGPointMake(current.x-previous.x, current.y-previous.y);
    
    //重新設定新位置
    _image.center=CGPointMake(center.x+offset.x, center.y+offset.y);
    
    NSLog(@觸摸中");
 
}
 
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
    NSLog(@"觸摸結束");
}
@end
一個簡單的拖動的觸摸事件,在這裡展示給大家了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.