2010-09-30 226 views
-1

確定這裏就是我處理目前的一個例子:傳遞變量

@implementation ECHOAppDelegate 
... 
@end 

@interface PtyView (PtyPrivate) 
-(void)startTask; 
-(void) didRead: (NSNotification *)fileNoty; 
@end 

@implementation PtyView 
... 
-(void)startTask { 
//starts task 
} 
@end 

現在,如果我想「觸發」 startTask從ECHOAppDelegate實現,我會怎麼做呢?現在它說它沒有被宣佈。

回答

0

首先,確保您導入​​標題。在ECHOAppDelegate.m

#import "PtyView.h" 

然後,假設你有​​一個實例:

[myPtyViewObj startTask]; 
+0

好,謝謝!但由於某種原因,我得到這個錯誤:'PtyView'可能不會響應'-startTask'這裏是我使用的代碼:\t PtyView * ptyviewobject = [[PtyView alloc] init]; \t [ptyviewobject startTask]; – objectiveccoder001 2010-10-01 13:16:17