1
我即將嘗試將suer在子視圖中選擇的值傳回給我的應用程序的主視圖。我一直在閱讀有關如何做到這一點,目前我正在遵循一個相當有益的教程here無法找到協議聲明NSObject
我從第18步開始,並將其實現到我的代碼中,因爲它看起來相當簡單...但是我有這個錯誤在我的secondview.h文件中,我聲明我的協議如下。
#import <UIKit/UIKit.h>
@protocol PassSearchData <nsobject> //this is where I get the "Cannot find protocol declaraton for 'nsobject' error
@required
- (void) setSecondFavoriteColor:(NSString *)secondFavoriteColor;
@end
@interface VehicleResultViewController : UITableViewController <NSXMLParserDelegate> {
//...
//Delegate stuff for passing information back to parent view
id <PassSearchData> delegate;
}
//..
//Delegate stuff for passing information back to parent view
@property (retain) id delegate;
//..
@end
</PassSearchData></nsobject></uikit/uikit.h> //more errors here also..
NSObject是區分大小寫的,所以你想要PassSearchData –
rightyho,哈哈謝謝你應該發現我自己。謝謝:P –