2011-04-20 47 views

回答

2

通過使用行seViewController *seView = [[seViewController alloc] init];(如果需要,更改init中的選項)在first.m中創建seViewController.m的實例。

然後,使用[seView insert];

0

這是關於一個非常初級的話題非常模糊的問題。我認真地建議閱讀一本關於Objective-C編程的書。

這麼說,我能猜到你需要像以下(在first.m):

#import "seViewController.h" 
... 
seViewController* seView = [seViewController new]; 
... 
[seView insert]; 
... 
相關問題