我正在将照片上传到 Facebook 应用程序,我认为我的 .h 文件中需要两个 @interfaces 用于我的视图控制器。
这是我的 ViewController.h 文件。
#import <UIKit/UIKit.h>
#import <Social/Social.h>
@interface FirstViewController : UIViewController <UIImagePickerControllerDelegate, UINavigationControllerDelegate> {
UIImagePickerController *bailey;
UIImagePickerController *baileys;
UIImage *image;
IBOutlet UIImageView *imageView;
}
- (IBAction)TakePhoto;
- (IBAction)ChooseExisting;
@end
@interface FirstViewController : UIViewController { SLComposeViewController *slComposeViewController;
UIImage *image; }
- (IBAction)ShareFB;
@end
当我尝试将此代码构建到我的 iPhone 或模拟器上时,它说
/Users/Condrum/Desktop/project/myApp/myApp/FirstViewController.h:21:1: Duplicate interface definition for class 'FirstViewController'
在此先感谢您的帮助。
- 矛盾。