我在我的主应用程序文件中这样写,该文件也与扩展名共享。
#ifdef SHARE_EXTENSION
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:APP_NAME message:@"You only have 1 photo. Confirm deletion? (Please note that you have to submit at least 1 photo for iFeedback)." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
#endif
但是,它仍然给我错误说 UIAlertview 不能在扩展中使用。我也需要共享该文件,并且不想仅为此代码创建另一个相同的文件。我该如何检查?