I want to print the total of all of the textfields connected to cool textfield collection. There are only 2, in the log file.
import UIKit
class ViewController: UIViewController {
@IBOutlet var cool: [UITextField]!
@IBAction func press(_ sender: Any) {
for view in cool {
((cool.text! as NSString).integerValue += ((cool.text! as NSString).integerValue
}
}
}
If you want to add up all of the text fields, then simply do:
Don't force unwrap optionals. Don't use
NSString
in Swift.