I used cocoa pods to install DynamicColor and SnappingStepper. How do I fix the compiler error on the "let stepper" line.
Error: Argument labels'(:,:,:,:)' do not match any available overloads When I post this error, the underscore character is not displayed but the _character should be in front of each colon.
import UIKit
import DynamicColor
import SnappingStepper
class ViewController: UIViewController {
let stepper = SnappingStepper(frame: CGRect (0, 0, 100, 40))
func stepperValueChangedAction(sender: AnyObject) {
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
stepper.addTarget(self, action: "stepperValueChangedAction:", forControlEvents: .ValueChanged)
view.addSubview(stepper)
}