IOS开发遇到Interface type cannot be statically allocated 问题的解决办法
程序员文章站
2022-04-12 20:06:49
1、问题
command + r运行提示如下错误
interface type cannot be statically allocated
2、解决办法
是代码写错了
user user...
1、问题
command + r运行提示如下错误
interface type cannot be statically allocated
2、解决办法
是代码写错了
user user = [[user alloc] init];
改成如下
user *user = [[user alloc] init];