mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-05-14 16:19:27 +08:00
Don't copy arrays
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
|
||||
@interface REMultipleChoiceItem : RETableViewItem
|
||||
|
||||
@property (copy, readwrite, nonatomic) NSArray *value;
|
||||
@property (strong, readwrite, nonatomic) NSArray *value;
|
||||
|
||||
+ (id)itemWithTitle:(NSString *)title value:(NSArray *)value selectionHandler:(void(^)(REMultipleChoiceItem *item))selectionHandler;
|
||||
- (id)initWithTitle:(NSString *)title value:(NSArray *)value selectionHandler:(void(^)(REMultipleChoiceItem *item))selectionHandler;
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
@interface RERadioItem : RETableViewItem
|
||||
|
||||
@property (copy, readwrite, nonatomic, getter = detailLabelText, setter = setDetailLabelText:) NSString *value;
|
||||
@property (strong, readwrite, nonatomic, getter = detailLabelText, setter = setDetailLabelText:) NSString *value;
|
||||
|
||||
+ (id)itemWithTitle:(NSString *)title value:(NSString *)value selectionHandler:(void(^)(RERadioItem *item))selectionHandler;
|
||||
- (id)initWithTitle:(NSString *)title value:(NSString *)value selectionHandler:(void(^)(RERadioItem *item))selectionHandler;
|
||||
|
||||
Reference in New Issue
Block a user