溫馨提示×

溫馨提示×

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

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

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

發(fā)布時間:2021-07-09 09:40:27 來源:億速云 閱讀:169 作者:小新 欄目:移動開發(fā)

小編給大家分享一下iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

一、顯示效果

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

二、原理簡介

1、思路

要實(shí)現(xiàn)這個效果需要先知道這兩個硬幣是怎樣運(yùn)動的,然后通過放大、縮小的效果實(shí)現(xiàn)的這種有距離感的效果。思路如下:

一、這兩個硬幣是在一定范圍內(nèi)做相對運(yùn)動的,可以先使一個硬幣在一個固定范圍內(nèi)做左右的往復(fù)運(yùn)動,另一個硬幣和它做“相對運(yùn)動”即可。

二、讓硬幣從左至右移動時先變小再回復(fù)正常;從右至左移動時先變大再回復(fù)正常;這樣就實(shí)現(xiàn)了這用有距離感的“相對運(yùn)動”。

2、代碼

第一步 要實(shí)現(xiàn)一個硬幣在一定范圍內(nèi)實(shí)現(xiàn)左右往復(fù)運(yùn)動,需要先固定一個范圍,當(dāng)運(yùn)動到左邊緣時讓其向右運(yùn)動,當(dāng)運(yùn)動到有邊緣時讓其向左運(yùn)動。

這里用到了MVC的思想,先創(chuàng)建一個模型XLDot,給這個模型添加一個Direction屬性,然后通過改變模型direction屬性從而改變運(yùn)動方向。

typedef NS_ENUM(NSInteger,DotDitection) 
{ 
  DotDitectionLeft = -1, 
  DotDitectionRight = 1, 
}; 
@interface XLDot : UIView 
//移動方向 就兩種 左、右 
@property (nonatomic,assign) DotDitection direction; 
//字體顏色 
@property (nonatomic,strong) UIColor *textColor; 
@end

先初始化一個豆,放在容器的左邊,方向設(shè)為向右

//初始化存放豆豆的的容器 
_dotContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)]; 
_dotContainer.center = self.center; 
[self addSubview:_dotContainer]; 
XLDot *dot = [[XLDot alloc] initWithFrame:CGRectMake(0, 0, [self dotWidth],[self dotWidth])]; 
dot.backgroundColor = [UIColor redColor]; 
dot.direction = DotDitectionRight; 
[_dotContainer addSubview:dot];

 通過CADisplayLink實(shí)現(xiàn)刷新工作,代碼如下

_link = [CADisplayLink displayLinkWithTarget:self selector:@selector(reloadView)]; 
[_link addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];

刷新代碼如下,通過移動到左右邊緣,改變direction屬性

//刷新UI 
-(void)reloadView 
{ 
  XLDot *dot1 = _dots.firstObject; 
  //改變移動方向、約束移動范圍 
  //移動到右邊距時 
  if (dot1.center.x >= _dotContainer.bounds.size.width - [self dotWidth]/2.0f) { 
    CGPoint center = dot1.center; 
    center.x = _dotContainer.bounds.size.width - [self dotWidth]/2.0f; 
    dot1.center = center; 
    dot1.direction = DotDitectionLeft; 
    [_dotContainer bringSubviewToFront:dot1]; 
  } 
  //移動到左邊距時 
  if (dot1.center.x <= [self dotWidth]/2.0f) { 
    dot1.center = CGPointMake([self dotWidth]/2.0f, dot1.center.y); 
    dot1.direction = DotDitectionRight; 
    [_dotContainer sendSubviewToBack:dot1]; 
  } 
  //更新第一個豆的位置 
  CGPoint center1 = dot1.center; 
  center1.x += dot1.direction * [self speed]; 
  dot1.center = center1; 
}

顯示效果:

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

第二步 實(shí)現(xiàn)向左移動先放大再回復(fù)正常、向右運(yùn)動先變小再回復(fù)正常。

代碼如下:

//顯示放大、縮小動畫 
-(void)showAnimationsOfDot:(XLDot*)dot 
{ 
  CGFloat apart = dot.center.x - _dotContainer.bounds.size.width/2.0f; 
  //最大距離 
  CGFloat maxAppart = (_dotContainer.bounds.size.width - [self dotWidth])/2.0f; 
  //移動距離和最大距離的比例 
  CGFloat appartScale = apart/maxAppart; 
  //獲取比例對應(yīng)余弦曲線的Y值 
  CGFloat transfomscale = cos(appartScale * M_PI/2.0); 
  //向右移動則 中間變大 兩邊變小 
  if (dot.direction == DotDitectionLeft) { 
    dot.transform = CGAffineTransformMakeScale(1 + transfomscale/4.0f, 1 + transfomscale/4.0f); 
    //向左移動則 中間變小 兩邊變大 
  }else if (dot.direction == DotDitectionRight){ 
    dot.transform = CGAffineTransformMakeScale(1 - transfomscale/4.0f,1 - transfomscale/4.0f); 
  } 
}

原理是利用余弦函數(shù)曲線-π/2到π/2先變大再變小的特性

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

效果如下:

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

第三步 放置另一個豆豆,和第一個豆豆做“相對運(yùn)動”,包括放大變小、運(yùn)動方向;

保證相對距離的代碼:

CGFloat apart = dot1.center.x - _dotContainer.bounds.size.width/2.0f; 
CGPoint center2 = dot2.center; 
center2.x = _dotContainer.bounds.size.width/2.0f - apart; 
dot2.center = center2;

效果如下:

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

稍加潤色后:

iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果

以上是“iOS如何仿微博客戶端實(shí)現(xiàn)紅包加載界面 XLDotLoading效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

ios
AI