Post

Replies

Boosts

Views

Activity

Reply to Exception NSException * "[<Calculus_area_and_perimeter.ViewController 0x14c506020> setValue: forUndefinedKey:]: this class is not key value coding-compliant for the key calcArea." 0x0000600002799cb0.
the code: import UIKit class ViewController: UIViewController {     @IBOutlet weak var larghezzaField: UITextField!          @IBOutlet weak var altezzaField: UITextField!          @IBOutlet weak var result: UILabel!          override func viewDidLoad() {         super.viewDidLoad()         // Do any additional setup after loading the view.     }        @IBAction func TotArea(_ sender: UIButton) {         if let L = Double(larghezzaField.text!) {             if let H = Double(altezzaField.text!) {                 result.text = String (L * H)             } else                 {result}         }     }     @IBAction func calcPerimetro(_ sender: UIButton) {     }     @IBAction func cancella(_ sender: UIButton) {     } }
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’21
Reply to Exception NSException * "[<Calculus_area_and_perimeter.ViewController 0x14c506020> setValue: forUndefinedKey:]: this class is not key value coding-compliant for the key calcArea." 0x0000600002799cb0.
OK, thank you.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to Exception NSException * "[<Calculus_area_and_perimeter.ViewController 0x14c506020> setValue: forUndefinedKey:]: this class is not key value coding-compliant for the key calcArea." 0x0000600002799cb0.
I have change name from calcArea to totArea but i have = error
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to Exception NSException * "[<Calculus_area_and_perimeter.ViewController 0x14c506020> setValue: forUndefinedKey:]: this class is not key value coding-compliant for the key calcArea." 0x0000600002799cb0.
the code: import UIKit class ViewController: UIViewController {     @IBOutlet weak var larghezzaField: UITextField!          @IBOutlet weak var altezzaField: UITextField!          @IBOutlet weak var result: UILabel!          override func viewDidLoad() {         super.viewDidLoad()         // Do any additional setup after loading the view.     }        @IBAction func TotArea(_ sender: UIButton) {         if let L = Double(larghezzaField.text!) {             if let H = Double(altezzaField.text!) {                 result.text = String (L * H)             } else                 {result}         }     }     @IBAction func calcPerimetro(_ sender: UIButton) {     }     @IBAction func cancella(_ sender: UIButton) {     } }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to error invoke API
Help me please… I’m blocked 😭
Replies
Boosts
Views
Activity
Oct ’21
Reply to error invoke API
Is not error…
Replies
Boosts
Views
Activity
Oct ’21
Reply to error: Use of local variable 'resultTotFarina' before its declaration
I resolved. Thank you
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Xcode 14.1: Account Authentication Failure
does anyone have the solution to solve this problem? I too have the same problem.
Replies
Boosts
Views
Activity
Nov ’22