Tuesday, 28 May 2013

I want to declare a property for CFStringRef, how can I do?

I want to declare a property for CFStringRef, how can I do?

Generally, we delare property like this:
@Property (nonatomic, retain) NSString * string;
@property (nonatomic, assign) NSInteger  number;
But if I want to declare a CF object, how can I do? Is it the same under ARC?

No comments:

Post a Comment