We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@YPLiang19 看文档里有写 OC 无参方法的调用可以省略后面的括号,但是super.viewDidLoad这种写法会崩溃,貌似死循环:
super.viewDidLoad
class SuperMyController:UIViewController{
The text was updated successfully, but these errors were encountered:
@zhaoxuezhi 对于super还不行,必须要加上();
Sorry, something went wrong.
@zhaoxuezhi 最新版本已经解决了这个问题,可以试试~
No branches or pull requests
@YPLiang19 看文档里有写 OC 无参方法的调用可以省略后面的括号,但是
super.viewDidLoad
这种写法会崩溃,貌似死循环:class SuperMyController:UIViewController{
super.viewDidLoad;
}
The text was updated successfully, but these errors were encountered: