真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

利用uitouch簡(jiǎn)單的實(shí)現(xiàn)了微信cell效果-創(chuàng)新互聯(lián)

#import

成都服務(wù)器托管,創(chuàng)新互聯(lián)提供包括服務(wù)器租用、雅安電信機(jī)房、帶寬租用、云主機(jī)、機(jī)柜租用、主機(jī)租用托管、CDN網(wǎng)站加速、主機(jī)域名等業(yè)務(wù)的一體化完整服務(wù)。電話咨詢:028-86922220

@interface weixinControl : UIControl

-(weixinControl *)initWithFram:(CGRect)rect;

@end

#import "weixinControl.h"

@implementation weixinControl

{

  CGRect _rect; //記錄self.frame的大小

  UIView *_frontView; //用來顯示主要內(nèi)容

  CGPoint _originPoint; //記錄開始touch時(shí)的position

  CGPoint _currentPoint;//記錄當(dāng)前位置

  CGRect _frontViewOriginRect;//記錄frontVie的初始fram

  CGFloat _offsetXPosition; //記錄x的位移量

  UIButton *_delBtn; //刪除按鈕

}

-(weixinControl *)initWithFram:(CGRect)rect

{

  if (self = [super initWithFrame:rect]) {

    self.backgroundColor = [UIColor cyanColor];

    _rect = rect;

    _offsetXPosition = 0.0f;

    [self makeDeletButton];

    [self makeFrontView];

  }

  return self;

}

-(void)makeDeletButton

{

  _delBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

  _delBtn.frame = CGRectMake(_rect.size.width - 50, 0, 50, _rect.size.height);

  [_delBtn setTitle:@"刪除" forState:UIControlStateNormal];

  _delBtn.backgroundColor = [UIColor redColor];

  [self addSubview:_delBtn];

}

-(void)makeFrontView

{

  _frontView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, _rect.size.width, _rect.size.height)];

  _frontViewOriginRect = _frontView.frame;

  _frontView.backgroundColor = [UIColor blueColor];

  [self addSubview:_frontView];

}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

  UITouch *beganTouch = [touches anyObject];

  _originPoint = [beganTouch locationInView:self];

}

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

{

  if (_offsetXPosition < (0 - _delBtn.frame.size.width)) {

    _frontView.frame = CGRectMake((0 -_delBtn.frame.size.width), _frontViewOriginRect.origin.y, _frontViewOriginRect.size.width, _frontViewOriginRect.size.height);

  }

  else

  {

    _frontView.frame = _frontViewOriginRect;

  }

}

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event

{

  UITouch *moveTouch = [touches anyObject];

  _currentPoint = [moveTouch locationInView:self];

  _offsetXPosition = _currentPoint.x - _originPoint.x;

  if (_offsetXPosition >= 0) {

    return;

  }

  _frontView.frame = CGRectMake(_offsetXPosition, _frontViewOriginRect.origin.y, _frontViewOriginRect.size.width, _frontViewOriginRect.size.height);

}

@end

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+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)景需求。


分享文章:利用uitouch簡(jiǎn)單的實(shí)現(xiàn)了微信cell效果-創(chuàng)新互聯(lián)
鏈接地址:http://weahome.cn/article/gicog.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部