私のアプリケーションでは、複数のクラスがあり、それぞれのクロスオーバーはそれぞれ です。私はこのクラスを接続し、それらのプロパティを作成する必要がありますが、いくつかのクラスは別のクラスでは見えません。ここでの主な問題はヘッダファイルを含めることです。 クラスMyOperationQueueヘッダーファイルを含める際の問題
#import <Foundation/Foundation.h>
#import "ContentTableView.h"
//#import "CustomTableViewCell.h"
//#import "ObjectForTableCell.h"
@interface MyOperationQueue : NSOperation
@property(assign, nonatomic) BOOL isCancelled;
@property(strong, nonatomic) ContentTableView* tableView; //unknown type name
クラスObjectForTableCell
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "MyOperationQueue.h"
@interface ObjectForTableCell : NSObject
@property (strong, nonatomic) MyOperationQueue* currentQueue;//unknown type name
クラスContentTableView - ここで私は警告を私は助けを事前
#import <UIKit/UIKit.h>
#import "CustomTableViewCell.h"
#import "Protocol.h"
#import "MyOperationQueue.h"
#import "ObjectForTableCell.h"
#import "ImageViewController.h"
@interface ContentTableView : UITableViewController<CellDelegate, NSURLSessionDataDelegate, NSURLSessionDelegate, NSURLSessionTaskDelegate>
感謝を持っていません。
大変ありがとう、私は以前のXcodeでそれに直面していませんでしたが、C++に直面していましたので、ありがとう、今はすべて完璧に動作します。 – Melany
@Melany:問題ありません! :) –