“CURRENT_USER”的重新声明无效。

时间:2016-05-12 13:00:54

标签: xcode swift macos

我想用Swift为OS X应用程序定义一个变量。

但我总是收到此错误:"无效重新声明CURRENT_USER"。

这就是我写的:

var CURRENT_USER: Firebase?

我也尝试过func:

func var CURRENT_USER: Firebase?

有谁知道我做错了什么?

2 个答案:

答案 0 :(得分:0)

<强>说明

是的,或者:

1)您必须已在代码中的其他位置声明CURRENT_USER(在同一Classfunc中)。

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 {

}

希望这可以帮助别人!