不能将'string'类型的值赋给'int'类型

时间:2016-04-13 16:46:53

标签: ios swift

所以,开始使用Swift和开发iOS应用程序。
有一个初学者教程将狗的年龄转换为人类年龄。

这是非常基本的,只是基于年龄5的倍数,但我觉得不准确。 (因此所有丑陋的其他条件)

我有两个问题:

  1. 在年龄上完成相同计算但最小化所有if else语句的最佳方法是什么? Theres必须是更好的方式。

  2. 我有30年的最后一个if else语句应该用一个字符串赋值dogAge变量。我遇到了将var从int转换为字符串的麻烦,并且一直在尝试各种研究方法,到目前为止,没有骰子。

  3. 提前致谢!

    import UIKit
    
    class ViewController: UIViewController {
    
    @IBOutlet weak var dogAgeTextField: UITextField!
    
    @IBOutlet weak var resultLabel: UILabel!
    
    @IBAction func reset(sender: AnyObject) {
       resultLabel.text = " "
       dogAgeTextField.text=" "
    }
    @IBAction func findAge(sender: AnyObject) {
    
        var dogAge = Int(dogAgeTextField.text!)!
    
        if (dogAge == 1){dogAge=15}
         else if (dogAge == 2) {dogAge=24}
         else if (dogAge == 3) {dogAge=29}
         else if (dogAge == 4) {dogAge=34}
         else if (dogAge == 5) {dogAge=38}
         else if (dogAge == 6) {dogAge=42}
         else if (dogAge == 7) {dogAge=47}
         else if (dogAge == 8) {dogAge=51}
         else if (dogAge == 9) {dogAge=56}
         else if (dogAge == 10) {dogAge=60}
         else if (dogAge == 11) {dogAge=65}
         else if (dogAge == 12) {dogAge=69}
         else if (dogAge == 13) {dogAge=74}
         else if (dogAge == 14) {dogAge=78}
         else if (dogAge == 15) {dogAge=83}
         else if (dogAge == 16) {dogAge=87}
         else if (dogAge == 17) {dogAge=92}
         else if (dogAge == 18) {dogAge=96}
         else if (dogAge == 19) {dogAge=101}
         else if (dogAge == 20) {dogAge=105}
         else if (dogAge == 21) {dogAge=109}
         else if (dogAge == 22) {dogAge=113}
         else if (dogAge == 23) {dogAge=117}
         else if (dogAge == 24) {dogAge=121}
         else if (dogAge == 25) {dogAge=125}
         else if (dogAge == 26) {dogAge=dogAge*5}
         else if (dogAge == 27) {dogAge=dogAge*5}
         else if (dogAge == 28) {dogAge=dogAge*5}
         else if (dogAge == 29) {dogAge=dogAge*5}
         else if (dogAge >= 30) {var dogAge=String(UTF8String: "really old")!}
    
    
        resultLabel.text = "Your dog is \(dogAge) in human years."
    }
    
    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.
    }
    

    }

2 个答案:

答案 0 :(得分:2)

问题是您无法将String分配给声明为Int

的变量

可以使用数组来简化整个表达式以映射狗/人年。

let dogToHuman = [0, 15, 24, 29 ... 140, 145] // complete the array with the missing values

if let dogAge = Int(dogAgeTextField.text!) {

   let humanAge : String

   if dogAge >= 30 {
     humanAge = "really old"
   } else {
     humanAge = String(dogToHuman[dogAge])
   }
   resultLabel.text = "Your dog is \(humanAge) in human years."
} else {
   resultLabel.text = "The input is not an integer"
}

答案 1 :(得分:1)

  
      
  1. 在年龄上完成相同计算但最小化所有if else语句的最佳方法是什么? Theres必须是更好的方式。
  2.   

一个天真的实现是将所有狗年值放在一个数组中,其中每个人的索引对应于人类年份。例如,

let humanYears = [0, 15, 24, 29, 34, 38, 42, 47, 51, 56, 60, 65, 69, 74, 78, 83, 87, 92, 96, 101, 105, 109, 113, 117, 121, 125]
let humanAgeString: String

if 1 <= dogAge && dogAge < 26 {
    humanAgeString = "\(humanYears[dogAge])"
} else if 26 <= dogAge && dogAge < 30 {
    humanAgeString = "\(dogAge * 5)"
} else if dogAge >= 30 {
    humanAgeString = "really old!"
} else {    // negative values or 0?
    humanAgeString = "impossible to calculate"
}

resultLabel.text = "Your dog is \(humanAgeString) in human years."

请注意,数组索引0只是0,因此数组的其余部分是从1开始的。

你可以尝试提出一个能够更优雅地计算事物的公式,但对于这个特定的问题集,这看起来有点矫枉过正。

  

我有30年的最后一个if else语句应该用一个字符串赋值dogAge变量。我遇到了将var从int转换为字符串的麻烦,并且已经尝试了各种研究方法,到目前为止,没有骰子。

要将Int放入String,只需使用内联字符串变量替换,例如"Dog age: \(dogAge)"

如果你想要一个公式来计算它,5x + (15 - floor(x / 2))看起来x <= 20会给你一个非常好的近似值{{1}}。