objective-c - oc, c++混编,c++函数中如何识别self?
伊谢尔伦
伊谢尔伦 2017-04-17 15:20:52
0
1
459

一个项目,用到了opencv库,有一个代理方法,这里假设为void cPlusPlusMethod(),在这个函数中要调用[self test1];但是在这个函数中无法识别self.如何解决?
以下是代码:

#import "ViewController.h"
#include <fstream>

using namespace std;
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

 
}
void cPlusPlusMethod() {
    //在C++这个代理方法中 ,要运行 用oc写的类方法:[self test1];
    [self test1];//不识别self如何解决?
}
- (void) test1 {
    NSLog(@"test1 ");
}

@end

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

全部回覆(1)
伊谢尔伦

那不叫代理方法,應該叫回呼函數。

C的函數在運行時都是放在記憶體的程式碼區,所以要想存取OC的對象,需要參數傳遞或存取全域變數。

#import "ViewController.h"
#include <fstream>

using namespace std;
static ViewController *handle;

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    handle = self;
}

void cPlusPlusMethod() {
    [handle test1];
}

- (void)test1 {
    NSLog(@"test1 ");
}

- (void)dealloc {
    handle = NULL;
}

@end
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板