我在该行中收到警告:
(将“ViewController *const_strong”发送到不兼容类型“id”的参数
在实现这行代码时
[output setSampleBufferDelegate:self queue:queue];
用于处理队列的代码
[[selfcaptureSession]addOutput:output];
dispatch_queue_t queue =dispatch_queue_create("myQueue", NULL);
[outputsetSampleBufferDelegate:selfqueue:queue];
dispatch_release(queue);
谁能指出这其中的原因?