久久99热66热这里只有精品,特黄特色的大片在线观看,亚洲日本三级在线观看,国产三级农村妇女在线,亚洲av毛片免费在线观看,哺乳叫自慰在线看,天天干美女av网

ios 雙指捏合放大縮小圖片的例子 -電腦資料

電腦資料 時間:2019-01-01 我要投稿
【m.dameics.com - 電腦資料】

   

    利用-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event 實現(xiàn),

ios 雙指捏合放大縮小圖片的例子

    touchesMoved每當(dāng)手指在屏幕上移動的時候都會運行。

    1.檢測手指的個數(shù)

    NSArray * touchesArr=[[event allTouches] allObjects];

    NSLog(@"手指個數(shù)%d",[touchesArr count]);

    2.檢測兩指的坐標,從而計算兩指的距離,

電腦資料

ios 雙指捏合放大縮小圖片的例子》(http://m.dameics.com)。

    p1=[[touchesArr objectAtIndex:0] locationInView:self.view];

    p2=[[touchesArr objectAtIndex:1] locationInView:self.view];

    3.計算距離增加,則增大圖片,距離減小則縮小圖片。用imageview的frame來控制圖片的大小。

    imageView.frame=CGRectMake(imgFrame.origin.x-addwidth/2.0f, imgFrame.origin.y-addheight/2.0f, imgFrame.size.width, imgFrame.size.height);

最新文章