Swift开发的Runkeeper设计开关控件:DGRunkeeperSwitch

jopen 9年前

Swift开发的Runkeeper设计开关控件 (two part segment control)。

alt tag alt tag

Requirements

  • Xcode 7-beta or higher
  • iOS 8.0 or higher (May work on previous versions, just did not test it. Feel free to edit it).
  • ARC
  • Swift 2.0

Demo

Open and run the DGRunkeeperSwitchExample project in Xcode to see DGRunkeeperSwitch in action.

Installation

Manual

All you need to do is drop DGRunkeeperSwitch.swift file into your project

Example usage

let runkeeperSwitch = DGRunkeeperSwitch(leftTitle: "Feed", rightTitle: "Leaderboard")  runkeeperSwitch.backgroundColor = UIColor(red: 239.0/255.0, green: 95.0/255.0, blue: 49.0/255.0, alpha: 1.0)  runkeeperSwitch.selectedBackgroundColor = .whiteColor()  runkeeperSwitch.titleColor = .whiteColor()  runkeeperSwitch.selectedTitleColor = UIColor(red: 239.0/255.0, green: 95.0/255.0, blue: 49.0/255.0, alpha: 1.0)  runkeeperSwitch.titleFont = UIFont(name: "HelveticaNeue-Medium", size: 13.0)  runkeeperSwitch.frame = CGRect(x: 50.0, y: 20.0, width: view.bounds.width - 100.0, height: 30.0)  runkeeperSwitch.autoresizingMask = [.FlexibleWidth]  view.addSubview(runkeeperSwitch)

项目主页:http://www.open-open.com/lib/view/home/1442056801758