我想用Swift为OS X应用程序定义一个变量。
但我总是收到此错误:"无效重新声明CURRENT_USER
"。
这就是我写的:
var CURRENT_USER: Firebase?
我也尝试过func:
func var CURRENT_USER: Firebase?
有谁知道我做错了什么?
答案 0 :(得分:0)
<强>说明强>
是的,或者:
1)您必须已在代码中的其他位置声明CURRENT_USER
(在同一Class
或func
中)。
2)CURRENT_USER
是框架使用的变量。
<强> SOLUTION:强>
只需更改var的名称。
答案 1 :(得分:0)
在swift
中,如果您.swift
中的class
文件不同会导致问题,则声明相同的名称:Invalid redeclaration of ''
如:
在A.swift
:
import UIKit
let max_count = 10 // the declare
class A: UIViewController {
}
在B.swift
:
import UIKit
let max_count = 10 // there will appear the error!
class B: UIViewController {
}
希望这可以帮助别人!