使用nsport线程通信iOS线程通信和进程通信的例子(NSMachPort和NSTask,NSPipe)
#definekMsg1100#definekMsg2101-(void)viewDidLoad{[superviewDidLoad];//1.创建主线程的port//子线程通过此端口发送消息给主线程NSPort*myPort=[NSMachPortport];//2.设置port的代理回调对象myPort.delegate=self;//3.把port加入runloop,接收port消息[[NS