@Retention(value=SOURCE) @Target(value=FIELD) public @interface Property
Notes:
Example:
class Foo {
@Property("copy, nonatomic") protected String bar;
}
generates:
@property (copy, nonatomic) NSString *bar;
public abstract String value
Copyright © 2017. All rights reserved.