這篇文章給大家分享的是有關(guān)ios中App開(kāi)發(fā)繪圖、手勢(shì)需要注意什么的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
成都創(chuàng)新互聯(lián)公司是一家專(zhuān)業(yè)提供堯都企業(yè)網(wǎng)站建設(shè),專(zhuān)注與網(wǎng)站設(shè)計(jì)制作、網(wǎng)站設(shè)計(jì)、H5高端網(wǎng)站建設(shè)、小程序制作等業(yè)務(wù)。10年已為堯都眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。
手勢(shì)的一些注意事項(xiàng)
對(duì)于 UITapGestureRecognizer 來(lái)說(shuō)我們一般需要知道該點(diǎn)擊手勢(shì)在屏幕中的位置 (locationInView:self)
對(duì)于 UIPanGestureRecognizer 來(lái)說(shuō)我們一般需要知道我們的滑動(dòng)手勢(shì)移動(dòng)了多少距離 (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); //復(fù)位 [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]; } } ];
接下來(lái)來(lái)一個(gè)iOS圖形繪制、旋轉(zhuǎn)、長(zhǎng)按、縮放、滑動(dòng)等綜合手勢(shì)的一個(gè) 畫(huà)圖 項(xiàng)目
感謝各位的閱讀!關(guān)于“ios中App開(kāi)發(fā)繪圖、手勢(shì)需要注意什么”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
標(biāo)題名稱(chēng):ios中App開(kāi)發(fā)繪圖、手勢(shì)需要注意什么
網(wǎng)站URL:http://jinyejixie.com/article42/pddphc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、用戶(hù)體驗(yàn)、企業(yè)建站、全網(wǎng)營(yíng)銷(xiāo)推廣、外貿(mào)建站、App開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)