我的iOS應用程序正在工作,突然間我看到這個錯誤:「無法與之前的'type-name'聲明說明符合並。任何有關可能導致此錯誤的想法?無法與之前的'type-name'聲明說明符合並
#import "SalesAPIManager.h"
@interface SalesDelegate : NSObject { // error points to this line
__unsafe_unretained id<SalesAPIManagerDelegate> delegate_;
}
@property (unsafe_unretained, nonatomic) id<SalesAPIManagerDelegate> delegate;
- (id)initWithDelegate:(id<SalesAPIManagerDelegate>)delegate;
@end
發佈錯誤指向的代碼。 –
不知道問題是什麼,但清理項目爲我解決了這個問題。 – pshah
這是一個罕見的問題,關於它的信息很少,而且沒有明確的答案。 @pshash的答案在所有情況下都不起作用。 –