I am unable to compile dispatch_queue_t
as a property using the strong
type. When I revert to assign
, the thread fails at runtime. I am compiling with OS X 10.10.3 (latest version).
@property (nonatomic, strong) dispatch_queue_t serialDispatchQueue;
I get the error message:
Semantic Issue: Property with 'retain (or strong)' attribute must be object type.
Note that I have read the other listings that indicate the need to compile in OS X 10.8 or later to support ARC. This doesn't seem to solve my problem. Any suggestions would be appreciated.