我在一个小的单窗格应用程序中管理不同的语言,为每个注释使用不同的字符串数组,由整数变量“userLang”索引,然后设置label.text = array [index].基本代码是:
原文链接:https://www.f2er.com/swift/319962.htmlimport UIKit class ViewController: UIViewController { var userLang = 0 var arrayOne = ["hi","hola"] var arrayTwo = ["Bye","Adios"] @IBOutlet weak var msgArrayOne: UILabel! @IBOutlet weak var msgArrayTwo: UILabel! msgArrayOne.text = arrayOne[userLang] //Error here: !Expected declaration msgArrayTwo.text = arrayTwo[userLang] //odd,but this line gets no error until I //remove the first line above,then //this line gets the same error. 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. } }
我一直收到“预期声明”错误.我尝试在引号(而不是数组)中使用一个简单的字符串作为测试,但仍然得到相同的错误.我搜索过网络&找不到任何解决问题的建议.如果我使用“保留”引用,我尝试更改名称,如果标签.
我在Apple的开发者手册中查找了Swift&找不到标签的正确语法.这种语法在其他项目中有效,所以我不确定是怎么回事.我甚至尝试将相关部分复制/粘贴到一个新项目(一个在线建议,如果是Xcode bug),没有更好的结果.我注意到小差异(空间或资本)可以在Swift中产生很大的不同.我在这里做错了吗?有什么建议么?