File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 81
81
*/
82
82
83
83
@interface RxMatch : NSObject
84
- @property (retain ) NSString * value; /* The substring that matched the expression. */
85
- @property (assign ) NSRange range; /* The range of the original string that was matched. */
86
- @property (retain ) NSArray * groups; /* Each object is an RxMatchGroup. */
87
- @property (retain ) NSString * original; /* The full original string that was matched against. */
84
+ @property (nonatomic , copy ) NSString * value; /* The substring that matched the expression. */
85
+ @property (nonatomic , assign ) NSRange range; /* The range of the original string that was matched. */
86
+ @property (nonatomic , copy ) NSArray * groups; /* Each object is an RxMatchGroup. */
87
+ @property (nonatomic , copy ) NSString * original; /* The full original string that was matched against. */
88
88
@end
89
89
90
90
91
91
@interface RxMatchGroup : NSObject
92
- @property (retain ) NSString * value;
93
- @property (assign ) NSRange range;
92
+ @property (nonatomic , copy ) NSString * value;
93
+ @property (nonatomic , assign ) NSRange range;
94
94
@end
95
95
96
96
You can’t perform that action at this time.
0 commit comments