我有一个名为ViewController的视图控制器,它可以完美地与我的应用程序配合使用,但是在我的其他viewControllers中,我需要将初始ViewController推送到我导入ViewController时,如下所示:
#import "AlbumsUtilities.h"
#import "PhotosUtilities.h"
#import "MyProgressHUD.h"
#import "CommonFunctionalities.h"
#import "AlbumDetailsViewController.h"
--->#import "ViewController.h"
@interface SettingsViewController ()
@property (nonatomic, strong) NSMutableArray<AlbumsUtilities *> *userAlbums;
@property (nonatomic, assign, getter=isReSequence) BOOL reSequence;
@end
我得到Apple Mach-O Linker(Id)错误,有什么想法吗?