我在seViewController.m中有一个函数插入。我想从first.m打电话给我。我怎么称呼它。
答案 0 :(得分:2)
使用以下行seViewController.m
在first.m
中创建seViewController *seView = [[seViewController alloc] init];
的实例(如果需要,可在init中更改选项)。
然后,使用[seView insert];
答案 1 :(得分:0)
关于一个非常基本的话题,这是一个非常模糊的问题。我认真地建议你读一本关于Objective-C编程的书。
那就是说,我猜你需要类似下面的内容(在first.m中):
#import "seViewController.h"
...
seViewController* seView = [seViewController new];
...
[seView insert];
...