标签: ios swift
我从objective-c转移到swift,我尝试做的只是创建一个类实例,以便我可以访问所述类的属性。
var myClassInstance = MyClass() print("length is \(myClassInstance.variableOne)")
在这方面的一些事情,但我收到了错误Cannot invoke initializer for type 'MyClass' with no arguments
Cannot invoke initializer for type 'MyClass' with no arguments