소스 검색

Copy attribute has no effect on read-only properties

Tanner Bennett 7 년 전
부모
커밋
55b579a34e

+ 1 - 1
Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.m

@@ -45,7 +45,7 @@ typedef NS_ENUM(NSUInteger, FLEXGlobalsRow) {
 
 
 @interface FLEXGlobalsTableViewController ()
 @interface FLEXGlobalsTableViewController ()
 
 
-@property (nonatomic, readonly, copy) NSArray<FLEXGlobalsTableViewControllerEntry *> *entries;
+@property (nonatomic, readonly) NSArray<FLEXGlobalsTableViewControllerEntry *> *entries;
 
 
 @end
 @end
 
 

+ 3 - 3
Classes/ObjectExplorers/Controllers/FLEXGlobalsTableViewControllerEntry.h

@@ -18,9 +18,9 @@ typedef void (^FLEXGlobalsTableViewControllerRowAction)(FLEXGlobalsTableViewCont
 
 
 @interface FLEXGlobalsTableViewControllerEntry : NSObject
 @interface FLEXGlobalsTableViewControllerEntry : NSObject
 
 
-@property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerEntryNameFuture entryNameFuture;
-@property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerViewControllerFuture viewControllerFuture;
-@property (nonatomic, readonly, copy) FLEXGlobalsTableViewControllerRowAction rowAction;
+@property (nonatomic, readonly) FLEXGlobalsTableViewControllerEntryNameFuture entryNameFuture;
+@property (nonatomic, readonly) FLEXGlobalsTableViewControllerViewControllerFuture viewControllerFuture;
+@property (nonatomic, readonly) FLEXGlobalsTableViewControllerRowAction rowAction;
 
 
 + (instancetype)entryWithNameFuture:(FLEXGlobalsTableViewControllerEntryNameFuture)nameFuture viewControllerFuture:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerFuture;
 + (instancetype)entryWithNameFuture:(FLEXGlobalsTableViewControllerEntryNameFuture)nameFuture viewControllerFuture:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerFuture;
 + (instancetype)entryWithNameFuture:(FLEXGlobalsTableViewControllerEntryNameFuture)nameFuture action:(FLEXGlobalsTableViewControllerRowAction)rowSelectedAction;
 + (instancetype)entryWithNameFuture:(FLEXGlobalsTableViewControllerEntryNameFuture)nameFuture action:(FLEXGlobalsTableViewControllerRowAction)rowSelectedAction;