1. <nobr id="easjo"><address id="easjo"></address></nobr>

      <track id="easjo"><source id="easjo"></source></track>
      1. 
        

      2. <bdo id="easjo"><optgroup id="easjo"></optgroup></bdo>
      3. <track id="easjo"><source id="easjo"><em id="easjo"></em></source></track><option id="easjo"><span id="easjo"><em id="easjo"></em></span></option>
          貴州做網站公司
          貴州做網站公司~專業!靠譜!
          10年網站模板開發經驗,熟悉國內外開源網站程序,包括DEDECMS,WordPress,ZBlog,Discuz! 等網站程序,可為您提供網站建設,網站克隆,仿站,網頁設計,網站制作,網站推廣優化等服務。我們專注高端營銷型網站,企業官網,集團官網,自適應網站,手機網站,網絡營銷,網站優化,網站服務器環境搭建以及托管運維等。為客戶提供一站式網站解決方案?。?!

          蘋果跑馬燈怎么設置(怎么在iOS中實現一個跑馬燈效果)

          來源:互聯網轉載 時間:2024-05-09 12:15:01

          實現方法

          1、首先我們從這個圖片里面能聯想到如果實現這個效果必然需要使用到動畫,或者還有有用scrollView的思路,這里我是用的動畫的方式實現的。

          2、.h文件

          自定義一個繼承UIView的LGJAutoRunLabel類,在.h文件中:

          @classLGJAutoRunLabel;typedefNS_ENUM(NSInteger,RunDirectionType){LeftType=0,RightType=1,};@protocolLGJAutoRunLabelDelegate<NSObject>@optional-(void)operateLabel:(LGJAutoRunLabel*)autoLabelanimationDidStopFinished:(BOOL)finished;@end@interfaceLGJAutoRunLabel:UIView@property(nonatomic,weak)id<LGJAutoRunLabelDelegate>delegate;@property(nonatomic,assign)CGFloatspeed;@property(nonatomic,assign)RunDirectionTypedirectionType;-(void)addContentView:(UIView*)view;-(void)startAnimation;-(void)stopAnimation;

          定義一個NS_ENUM用來判斷自動滾動的方向,分別是左和右,聲明一個可選類型的協議,用來在controller中調用并對autoLabel進行操作。聲明對外的屬性和方法。這里一目了然,主要的實現思路都集中在.m文件中。

          3、.m文件

          聲明“私有”變量和屬性:

          @interfaceLGJAutoRunLabel()<CAAnimationDelegate>{CGFloat_width;CGFloat_height;CGFloat_animationViewWidth;CGFloat_animationViewHeight;BOOL_stoped;UIView*_contentView;//滾動內容視圖}@property(nonatomic,strong)UIView*animationView;//放置滾動內容視圖@end

          初始化方法:

          -(instancetype)initWithFrame:(CGRect)frame{if(self==[superinitWithFrame:frame]){_width=frame.size.width;_height=frame.size.height;self.speed=1.0f;self.directionType=LeftType;self.layer.masksToBounds=YES;self.animationView=[[UIViewalloc]initWithFrame:CGRectMake(_width,0,_width,_height)];[selfaddSubview:self.animationView];}returnself;}

          將滾動內容視圖contentView添加到動畫視圖animationView上:

          -(void)addContentView:(UIView*)view{[_contentViewremoveFromSuperview];view.frame=view.bounds;_contentView=view;self.animationView.frame=view.bounds;[self.animationViewaddSubview:_contentView];_animationViewWidth=self.animationView.frame.size.width;_animationViewHeight=self.animationView.frame.size.height;}

          讓animationView上的contentView自動滾動起來的主要方法在這兒,重點來了,就是這個- (void)startAnimation方法,看一下這個方法里面是怎么樣實現的:

          -(void)startAnimation{[self.animationView.layerremoveAnimationForKey:@"animationViewPosition"];_stoped=NO;CGPointpointRightCenter=CGPointMake(_width+_animationViewWidth/2.f,_animationViewHeight/2.f);CGPointpointLeftCenter=CGPointMake(-_animationViewWidth/2,_animationViewHeight/2.f);CGPointfromPoint=self.directionType==LeftType?pointRightCenter:pointLeftCenter;CGPointtoPoint=self.directionType==LeftType?pointLeftCenter:pointRightCenter;self.animationView.center=fromPoint;UIBezierPath*movePath=[UIBezierPathbezierPath];[movePathmoveToPoint:fromPoint];[movePathaddLineToPoint:toPoint];CAKeyframeAnimation*moveAnimation=[CAKeyframeAnimationanimationWithKeyPath:@"position"];moveAnimation.path=movePath.CGPath;moveAnimation.removedOnCompletion=YES;moveAnimation.duration=_animationViewWidth/30.f*(1/self.speed);moveAnimation.delegate=self;[self.animationView.layeraddAnimation:moveAnimationforKey:@"animationViewPosition"];}

          ↘?首先先把animationView.layer上的動畫移除掉,接下來就是要找到animationView\contentView的pointCenter這里把這個中點當做是animationView或者是contentView都行,因為這兩個視圖的frame是相等的,這步找左右中點的意義在于,完全顯示出文字內容,因為可能會遇到那種比如文字太長了,view長度不夠,不能完全顯示出來文字的全部內容, 這里我們找到中點,也就相當于確定了內容視圖要滑動的范圍了,接下來根據起始方向的枚舉值設置fromPoint和toPoint這里我們默認是從右向左滾動的。這里我們做動畫設置,用到了貝塞爾曲線,我們設置UIBezierPath的起始位置就是fromPoint也就是屏幕右方(我們看不見)self.animationView.center。終止位置是屏幕左方toPoint此時animationView滾動的起始位置的首和終止位置的尾的距離正好是屏幕的寬度。這里我們使用CAKeyframeAnimation關鍵幀動畫,moveAnimation.path = movePath.CGPath; ,moveAnimation.removedOnCompletion = YES;動畫完成后就將動畫移除,不保留最終的狀態。 [self.animationView.layer addAnimation:moveAnimation forKey:@"animationViewPosition"];將動畫添加到animationView.layer上。

          (這段是對上面代碼的解釋)

          -------------------分割線-------------------

          接下來的這個就是代理方法的實現了,當動畫完成后悔調用LGJAutoRunLabelDelegate我們自定義的delegate方法。

          -(void)stopAnimation{_stoped=YES;[self.animationView.layerremoveAnimationForKey:@"animationViewPosition"];}-(void)animationDidStop:(CAAnimation*)animfinished:(BOOL)flag{if(self.delegate&&[self.delegaterespondsToSelector:@selector(operateLabel:animationDidStopFinished:)]){[self.delegateoperateLabel:selfanimationDidStopFinished:flag];}if(flag&&!_stoped){[selfstartAnimation];}}

          4、在controller中使用方法

          主要的方法就是聲明LGJAutoRunLabel實例,將代理設為自身,聲明directionType默認為Left,在runLabel上創建label也就是我們看到的文字。其余方法一目了然了。

          //MARK:-CreateAutoRunLabel-(void)createAutoRunLabel{LGJAutoRunLabel*runLabel=[[LGJAutoRunLabelalloc]initWithFrame:CGRectMake(0,100,kWidth,50)];runLabel.delegate=self;runLabel.directionType=LeftType;[self.viewaddSubview:runLabel];[runLabeladdContentView:[selfcreateLabelWithText:@"繁華聲遁入空門折煞了夢偏冷輾轉一生情債又幾如你默認生死枯等枯等一圈又一圈的浮圖塔斷了幾層斷了誰的痛直奔一盞殘燈傾塌的山門容我再等歷史轉身等酒香醇等你彈一曲古箏"textColor:[selfrandomColor]labelFont:[UIFontsystemFontOfSize:14]]];[runLabelstartAnimation];}-(UILabel*)createLabelWithText:(NSString*)texttextColor:(UIColor*)textColorlabelFont:(UIFont*)font{NSString*string=[NSStringstringWithFormat:@"%@",text];CGFloatwidth=[UILabelgetWidthByTitle:stringfont:font];UILabel*label=[[UILabelalloc]initWithFrame:CGRectMake(0,0,width,50)];label.font=font;label.text=string;label.textColor=textColor;returnlabel;}-(UIColor*)randomColor{return[UIColorcolorWithRed:[selfrandomValue]green:[selfrandomValue]blue:[selfrandomValue]alpha:1];}-(CGFloat)randomValue{returnarc4random()%255/255.0f;}

          上述內容就是怎么在iOS中實現一個跑馬燈效果,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注本站行業資訊頻道。

          c語言中正確的字符常量是用一對單引號將一個字符括起表示合法的字符常量。例如‘a’。數值包括整型、浮點型。整型可用十進制,八進制,十六進制。八進制前面要加0,后面...

          2022年天津專場考試原定于3月19日舉行,受疫情影響確定延期,但目前延期后的考試時間推遲。 符合報名條件的考生,須在規定時間登錄招考資訊網(www.zha...

          :喜歡聽,樂意看。指很受歡迎?!巴卣官Y料”喜聞樂見:[ xǐ wén lè jiàn ]詳細解釋1. 【解釋】:喜歡聽,樂意看。指很受歡迎。2. 【示例】:這是...

          (資料圖片)2022年10月10日24時國內汽柴油價格將迎來新一輪調整?,F在已經進入到2022年第19次油價調整的統計之中,新一輪油價統計數據以下跌開局,而且來到今天第二個工作日的統計,油價預期跌幅已經超過下跌標準紅線,預計下調油價60元/噸,折約升價下跌0.04元~0.05元的幅度。就目前統計數據來看,油價下跌對比上漲更容易一些。但目前距離下一次調整仍有半個多月時間,仍需關注后續國際油價走勢,最...

          “王心凌概念股”市值蒸發千億怎么回事?王心凌概念股其實指的是芒果超媒,由于現在網上都把芒果超媒股票稱之為“王心凌概念股”所以王心凌概念股也因此而誕生了。王心凌概念股誕生之后,原本以為芒果超媒的股票開市后會一路高漲,結果5月23日開盤后,芒果超媒的股價卻是一路下跌。5月23日芒果超媒股價一路下跌,截止當日收盤時間,芒果超媒下跌超1%。根據數據顯示,芒果...

          微博打不開怎么辦?微博打不開的解決方法有以下6種:1、檢查網絡連接:看看你的網絡連接正常不正常,網速有沒有問題,如果網絡連接有問題或者網速過差就重新連接你的網絡。2、清除瀏覽記錄:清除你的瀏覽器緩存和歷史記錄,清理ie瀏覽器緩存和歷史記錄的方法是打開ie瀏覽器,打開瀏覽器的工具,點擊《刪除瀏覽的歷史記錄》,再點擊刪除。3、對電腦進行安全掃描:如果你的電腦中被安置了木馬或者中了病毒,就很有可能造成新...

          TOP
          国产初高中生视频在线观看|亚洲一区中文|久久亚洲欧美国产精品|黄色网站入口免费进人
          1. <nobr id="easjo"><address id="easjo"></address></nobr>

              <track id="easjo"><source id="easjo"></source></track>
              1. 
                

              2. <bdo id="easjo"><optgroup id="easjo"></optgroup></bdo>
              3. <track id="easjo"><source id="easjo"><em id="easjo"></em></source></track><option id="easjo"><span id="easjo"><em id="easjo"></em></span></option>