如何从另一个类调用一个类中的函数

时间:2011-04-20 09:40:24

标签: iphone objective-c xcode

我在seViewController.m中有一个函数插入。我想从first.m打电话给我。我怎么称呼它。

2 个答案:

答案 0 :(得分:2)

使用以下行seViewController.mfirst.m中创建seViewController *seView = [[seViewController alloc] init];的实例(如果需要,可在init中更改选项)。

然后,使用[seView insert];

答案 1 :(得分:0)

关于一个非常基本的话题,这是一个非常模糊的问题。我认真地建议你读一本关于Objective-C编程的书。

那就是说,我猜你需要类似下面的内容(在first.m中):

#import "seViewController.h"
...
seViewController* seView = [seViewController new];
...
[seView insert];
...