"error: Semantic Issue: Interface type cannot be statically allocated"
的含义是什么?
这是错误的界限:
UIViewController imageWithCaptionController = [[UIViewController alloc] initWithNibName:@"ImageWIthCaption" bundle:nibBundleOrNil];
感谢 帕特里克
答案 0 :(得分:42)
你可能在imageWithCaptionController之前缺少'*',你的行应该是
UIViewController *imageWithCaptionController = ...