show.h
1
2
3
4
5
6
7
8
9
|
#ifndef __OCDay01__Show__ #define __OCDay01__Show__ #include <stdio.h> extern void testTshow();
#endif /* defined(__OCDay01__Show__) */ |
show.c
1
2
3
4
5
|
#include "Show.h" void testTshow(){
printf( "我就是大名鼎鼎的 C文件中的 函数 ,何人敢调用? 哈哈哈哈 \n" );
} |
main.m(oc源文件)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 6-【理解】访问OC源文件、C源文件中的函数 #import <Foundation/Foundation.h> //引入 show的头文件 #import "Show.h" void test1(){
printf( "你好啊 我是C语言函数 我放在了 OC原文件中 , 你敢调用我一下子 不 ? 哈哈哈 \n" );
} int main( int argc, const char * argv[]) {
@autoreleasepool {
//OC 中访问 写在OC源文件中的 C语言函数 是可行的.
test1();
//OC 中访问 写在C文件中的 C函数 是可行的.
testTshow();
}
return 0;
} |
本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/5304996.html,如需转载请自行联系原作者