Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.6 KB

README.md

File metadata and controls

66 lines (40 loc) · 1.6 KB

DottedLineView

CI Status Version License Platform

Draw horizontal or vertical dotted line for iOS.

screenshot

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Usage

Interface Builder

Set View into Interface Builder

interfacebuilder1

Set custome class

interfacebuilder2

Edit properties

interfacebuilder3

Code

import DottedLineView
let dottedLineView = DottedLineView(frame: CGRect(x: 0, y: 100, width: view.frame.width, height: 10))
dottedLineView.lineWidth = 8
dottedLineView.lineColor = UIColor.blueColor()
    
view.addSubview(dottedLineView)

Requirements

  • iOS 8.0+
  • Xcode 7.3.1+

Installation

DottedLineView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "DottedLineView"

Author

Kenji Abe, kenji@star-zero.com

License

DottedLineView is available under the MIT license. See the LICENSE file for more info.