重慶分公司,新征程啟航
為企業(yè)提供網(wǎng)站建設(shè)、域名注冊(cè)、服務(wù)器等服務(wù)
為企業(yè)提供網(wǎng)站建設(shè)、域名注冊(cè)、服務(wù)器等服務(wù)
先來(lái)看看實(shí)現(xiàn)效果(GIF):
實(shí)現(xiàn)思路:
直接自定義 UIView(CYPhotoPreviewer),為了實(shí)現(xiàn)雙擊縮放,可以實(shí)現(xiàn) UIScrollViewDelegate 對(duì)應(yīng)的方法。如果需要模糊背景,可以在自定義的 UIView 中先添加模糊背景,再添加 UIScrollView,繼而在 UIScrollView 中添加圖片容器,這個(gè)容器就是要顯示的圖片的 superView,代碼一目了然:
- (void)setup { self.frame = [UIScreenmainScreen].bounds; self.backgroundColor = [UIColorclearColor]; UITapGestureRecognizer *singleTap = [[UITapGestureRecognizeralloc] initWithTarget:selfaction:@selector(singleTap:)]; [self addGestureRecognizer:singleTap]; UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizeralloc] initWithTarget:selfaction:@selector(doubleTap:)]; doubleTap.numberOfTapsRequired = 2; [singleTaprequireGestureRecognizerToFail:doubleTap]; [self addGestureRecognizer:doubleTap]; UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizeralloc] initWithTarget:selfaction:@selector(longPress:)]; [self addGestureRecognizer:longPress]; // 設(shè)置模糊背景 self.blurBackground = [[UIVisualEffectViewalloc] initWithEffect:[UIBlurEffecteffectWithStyle:UIBlurEffectStyleExtraLight]]; self.blurBackground.frame = self.frame; [self addSubview:self.blurBackground]; // 設(shè)置 UIScrollView 相關(guān)屬性 self.scrollView = [[UIScrollViewalloc] initWithFrame:[UIScreenmainScreen].bounds]; self.scrollView.delegate = self; self.scrollView.bouncesZoom = YES; self.scrollView.maximumZoomScale = 3.0; self.scrollView.multipleTouchEnabled = YES; self.scrollView.alwaysBounceVertical = NO; self.scrollView.showsVerticalScrollIndicator = NO; self.scrollView.showsHorizontalScrollIndicator = NO; [self addSubview:self.scrollView]; // containerView self.containerView = [[UIViewalloc] init]; [self.scrollViewaddSubview:self.containerView]; // imageView self.imageView = [[UIImageViewalloc] init]; self.imageView.clipsToBounds = YES; self.imageView.backgroundColor = [UIColorcolorWithWhite:1.0 alpha:0.5]; [self.containerViewaddSubview:self.imageView]; }
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。