错误:语义问题:接口类型无法静态分配?

时间:2011-05-06 13:45:27

标签: ios ipad

"error: Semantic Issue: Interface type cannot be statically allocated"的含义是什么?

这是错误的界限:

UIViewController imageWithCaptionController = [[UIViewController alloc] initWithNibName:@"ImageWIthCaption" bundle:nibBundleOrNil];

感谢 帕特里克

1 个答案:

答案 0 :(得分:42)

你可能在imageWithCaptionController之前缺少'*',你的行应该是

UIViewController *imageWithCaptionController = ...