how to implement marquee label in IOS using swift

∥☆過路亽.° 提交于 2019-11-29 20:55:06

问题


How to implement MarqueeLabel in iOS. I found example in Objective-C but I'm using Swift.


回答1:


For creating marquee in swift Add Below Class in your Project https://github.com/cbpowell/MarqueeLabel

To do this first add the pod: pod 'MarqueeLabel'.

And perform a pod update in your project.

Create one label and set the custom class as MarqueeLabel in the storyboard. Then:

@IBOutlet weak var marqueeLabel:MarqueeLabel!

In ViewDidLoad add this:

marqueeLabel.type = .Continuous
marqueeLabel.scrollDuration = 5.0
marqueeLabel.animationCurve = .EaseInOut
marqueeLabel.fadeLength = 10.0
marqueeLabel.leadingBuffer = 30.0
marqueeLabel.trailingBuffer = 20.0



回答2:


Use MarqueeLabel, it very easy to use & implement.

If you are using Pod then you can integrate and try sample code as:

Objective-C:

pod 'MarqueeLabel'

MarqueeLabel *lengthyLabel = [[MarqueeLabel alloc] initWithFrame:aFrame duration:8.0 andFadeLength:10.0f];

Swift:

pod 'MarqueeLabel/Swift'

var lengthyLabel = MarqueeLabel.init(frame: aFrame, duration: 8.0, fadeLength: 10.0)


Another Solution Using Web View:

String marquee = "<html><body><marquee>This is sample marquee</marquee></body></html>"
webview.loadData(marquee, "text/html", null);


Here is result:




回答3:


Download the following link github Marquee lable Demo:

https://github.com/cbpowell/MarqueeLabel-Swift

then

Follow the following steps :

  1. Download the above github Project
  2. Copy Marqueelable.swift file from classes
  3. paste Marqueelable.swift file in your project
  4. Give your any UILable as MarqueeLabel type

    Ex : @IBOutlet weak var demoLabel1: MarqueeLabel!

  5. Run You project




回答4:


Using a label which can Marquee up its content is really simple. Just add MarqueeLabel pod in your project.

Swift:

pod 'MarqueeLabel/Swift'

And then select the label you wish to perform Marquee on and add the Custom Class MarqueeLabel to it in the Identity Inspector.

That's it.

This is the Simplest way to add marquee in your Label. After adding Custom Class MarqueeLabel if you want some spacing in between the last character and the first character of the content of your label then:

Step 1: Select the label.

Step 2: Go to Attributes Inspector and then increase the fadeLength attribute value the much you want to have. Applying value 10 to it is fair enough.

If you wish to customize more then Add custom class MarqueeLabel to the Label and then take the outlet of that Label in you Code and customize it the way you want to.

The outlet of that Label in your code should look like this:

@IBOutlet var YOURLABELNAME: MarqueeLabel!

If not so then start over by first adding the custom class to the label and then taking its outlet in the code file.




回答5:


Check out the Swift version of MarqueeLabel!



来源:https://stackoverflow.com/questions/33007063/how-to-implement-marquee-label-in-ios-using-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!