1. 在AcParamHandle.h声明函数
2.在AcParamHandle.c实现函数
3.在ViewController.m中引用AcParamHandle.h
4.在ViewController.m中调用函数/方法
//准备函数参数
Byte *byteArray = (Byte *)[data bytes];
struct ouConnect_msg *ouconmsg ;
ouconmsg=(struct ouConnect_msg*) malloc(sizeof(struct ouConnect_msg));
struct hlink_msg *hlinkmsg;
hlinkmsg=(struct hlink_msg*) malloc(sizeof(struct hlink_msg));
//调用
ouConnect_handle(byteArray, ouconmsg,hlinkmsg);