Here is my code, any help is very grateful to you! This was written in Xcode in Swift. I keep getting the error that says: "Successive line declarations should be divided by"; "
import UIKit class View Controller: UIViewController { @IBOutlet var outputLabel: UILabel! = UILabel() var currentCount : Int = 0 override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } @IBAction func addOneButton(sender: UIButton) { currentCount = currentCount + 1 if(currentCount <= 1) { outputLabel.text = "The button has been clicked 1 time!" outputLabel.textColor = UIColor.purpleColor() } else { outputLabel.text = "The button has been clicked \(currentCount) number of times." outputLabel.textColor = UIColor.redColor() var Hello: UILabel! { if(currentCount >= 5) { outputLabel.text = "Don't Forget To Give A GOOD Rating! :D" outputLabel.textColor = UIColor.orangeColor() } else { outputLabel.text = "Nothing To See Here..." }
source share