欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS开发遇到Interface type cannot be statically allocated 问题的解决办法

程序员文章站 2022-09-02 20:29:59
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];