91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ios中App開發繪圖、手勢需要注意什么

發布時間:2021-09-15 15:37:20 來源:億速云 閱讀:134 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關ios中App開發繪圖、手勢需要注意什么的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

手勢的一些注意事項

對于 UITapGestureRecognizer 來說我們一般需要知道該點擊手勢在屏幕中的位置 (locationInView:self)

對于 UIPanGestureRecognizer 來說我們一般需要知道我們的滑動手勢移動了多少距離 (translationInView:pan)

-(void) pan: (UIPanGestureRecognizer * ) pan {
  CGPoint transP = [pan translationInView: pan.view]; //$1 = (x = 0.73990527317289434, y = 0)
  CGPoint pont1 = [pan locationInView: self]; //$2 = (x = 198.16665649414063, y = 342.33332824707031)
  CGPoint pont2 = [pan locationInView: self.imageV]; //$3 = (x = 198.12057060663793, y = 342.61609831987914)
  pan.view.transform = CGAffineTransformTranslate(pan.view.transform, transP.x, transP.y);
  //復位
  [pan setTranslation: CGPointZero inView: pan.view];
}
[UIView animateWithDuration: 0.25 animations: ^ {
    self.imageView.alpha = 0;
  }completion: ^ (BOOL finished){
    self.imageView.alpha = 1;
    UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0);
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [self.layer renderInContext: ctx];
    UIImage * imageGot = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    [self.imageView removeFromSuperview];
    if (self.delegate && [self.delegate respondsToSelector: @selector(handleImageView: didOperatedImage: )]){
      [self.delegate handleImageView: self didOperatedImage: imageGot];
    }
  }
];

接下來來一個iOS圖形繪制、旋轉、長按、縮放、滑動等綜合手勢的一個 畫圖 項目

ios中App開發繪圖、手勢需要注意什么

感謝各位的閱讀!關于“ios中App開發繪圖、手勢需要注意什么”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳曲县| 顺昌县| 齐河县| 常州市| 石林| 重庆市| 南城县| 和龙市| 淄博市| 侯马市| 辰溪县| 唐河县| 桐乡市| 深水埗区| 古丈县| 福海县| 双辽市| 肥西县| 平阴县| 鄯善县| 克山县| 横峰县| 旺苍县| 南华县| 盐亭县| 汉源县| 绥德县| 荃湾区| 桂平市| 汕头市| 金坛市| 定兴县| 疏勒县| 当雄县| 四会市| 大石桥市| 深州市| 昆明市| 中牟县| 海安县| 广平县|