Что означает "error: Semantic Issue: Interface type cannot be statically allocated"?
"error: Semantic Issue: Interface type cannot be statically allocated"
Это неправильная строка:
UIViewController imageWithCaptionController = [[UIViewController alloc] initWithNibName:@"ImageWIthCaption" bundle:nibBundleOrNil];
спасибо Патрик
Возможно, вам не хватает '*' перед imageWithCaptionController, ваша строка должна быть
UIViewController *imageWithCaptionController = ...