RLMArray.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2014 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Realm/RLMCollection.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @class RLMObject, RLMResults<RLMObjectType>;
  21. /**
  22. `RLMArray` is the container type in Realm used to define to-many relationships.
  23. Unlike an `NSArray`, `RLMArray`s hold a single type, specified by the `objectClassName` property.
  24. This is referred to in these docs as the “type” of the array.
  25. When declaring an `RLMArray` property, the type must be marked as conforming to a
  26. protocol by the same name as the objects it should contain (see the
  27. `RLM_COLLECTION_TYPE` macro). In addition, the property can be declared using Objective-C
  28. generics for better compile-time type safety.
  29. RLM_COLLECTION_TYPE(ObjectType)
  30. ...
  31. @property RLMArray<ObjectType *><ObjectType> *arrayOfObjectTypes;
  32. `RLMArray`s can be queried with the same predicates as `RLMObject` and `RLMResult`s.
  33. `RLMArray`s cannot be created directly. `RLMArray` properties on `RLMObject`s are
  34. lazily created when accessed, or can be obtained by querying a Realm.
  35. ### Key-Value Observing
  36. `RLMArray` supports array key-value observing on `RLMArray` properties on `RLMObject`
  37. subclasses, and the `invalidated` property on `RLMArray` instances themselves is
  38. key-value observing compliant when the `RLMArray` is attached to a managed
  39. `RLMObject` (`RLMArray`s on unmanaged `RLMObject`s will never become invalidated).
  40. Because `RLMArray`s are attached to the object which they are a property of, they
  41. do not require using the mutable collection proxy objects from
  42. `-mutableArrayValueForKey:` or KVC-compatible mutation methods on the containing
  43. object. Instead, you can call the mutation methods on the `RLMArray` directly.
  44. */
  45. @interface RLMArray<RLMObjectType> : NSObject<RLMCollection>
  46. #pragma mark - Properties
  47. /**
  48. The number of objects in the array.
  49. */
  50. @property (nonatomic, readonly, assign) NSUInteger count;
  51. /**
  52. The type of the objects in the array.
  53. */
  54. @property (nonatomic, readonly, assign) RLMPropertyType type;
  55. /**
  56. Indicates whether the objects in the collection can be `nil`.
  57. */
  58. @property (nonatomic, readonly, getter = isOptional) BOOL optional;
  59. /**
  60. The class name of the objects contained in the array.
  61. Will be `nil` if `type` is not RLMPropertyTypeObject.
  62. */
  63. @property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
  64. /**
  65. The Realm which manages the array. Returns `nil` for unmanaged arrays.
  66. */
  67. @property (nonatomic, readonly, nullable) RLMRealm *realm;
  68. /**
  69. Indicates if the array can no longer be accessed.
  70. */
  71. @property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
  72. /**
  73. Indicates if the array is frozen.
  74. Frozen arrays are immutable and can be accessed from any thread. Frozen arrays
  75. are created by calling `-freeze` on a managed live array. Unmanaged arrays are
  76. never frozen.
  77. */
  78. @property (nonatomic, readonly, getter = isFrozen) BOOL frozen;
  79. #pragma mark - Accessing Objects from an Array
  80. /**
  81. Returns the object at the index specified.
  82. @param index The index to look up.
  83. @return An object of the type contained in the array.
  84. */
  85. - (RLMObjectType)objectAtIndex:(NSUInteger)index;
  86. /**
  87. Returns an array containing the objects in the array at the indexes specified by a given index set.
  88. `nil` will be returned if the index set contains an index out of the arrays bounds.
  89. @param indexes The indexes in the array to retrieve objects from.
  90. @return The objects at the specified indexes.
  91. */
  92. - (nullable NSArray<RLMObjectType> *)objectsAtIndexes:(NSIndexSet *)indexes;
  93. /**
  94. Returns the first object in the array.
  95. Returns `nil` if called on an empty array.
  96. @return An object of the type contained in the array.
  97. */
  98. - (nullable RLMObjectType)firstObject;
  99. /**
  100. Returns the last object in the array.
  101. Returns `nil` if called on an empty array.
  102. @return An object of the type contained in the array.
  103. */
  104. - (nullable RLMObjectType)lastObject;
  105. #pragma mark - Adding, Removing, and Replacing Objects in an Array
  106. /**
  107. Adds an object to the end of the array.
  108. @warning This method may only be called during a write transaction.
  109. @param object An object of the type contained in the array.
  110. */
  111. - (void)addObject:(RLMObjectType)object;
  112. /**
  113. Adds an array of objects to the end of the array.
  114. @warning This method may only be called during a write transaction.
  115. @param objects An enumerable object such as `NSArray` or `RLMResults` which contains objects of the
  116. same class as the array.
  117. */
  118. - (void)addObjects:(id<NSFastEnumeration>)objects;
  119. /**
  120. Inserts an object at the given index.
  121. Throws an exception if the index exceeds the bounds of the array.
  122. @warning This method may only be called during a write transaction.
  123. @param anObject An object of the type contained in the array.
  124. @param index The index at which to insert the object.
  125. */
  126. - (void)insertObject:(RLMObjectType)anObject atIndex:(NSUInteger)index;
  127. /**
  128. Removes an object at the given index.
  129. Throws an exception if the index exceeds the bounds of the array.
  130. @warning This method may only be called during a write transaction.
  131. @param index The array index identifying the object to be removed.
  132. */
  133. - (void)removeObjectAtIndex:(NSUInteger)index;
  134. /**
  135. Removes the last object in the array.
  136. This is a no-op if the array is already empty.
  137. @warning This method may only be called during a write transaction.
  138. */
  139. - (void)removeLastObject;
  140. /**
  141. Removes all objects from the array.
  142. @warning This method may only be called during a write transaction.
  143. */
  144. - (void)removeAllObjects;
  145. /**
  146. Replaces an object at the given index with a new object.
  147. Throws an exception if the index exceeds the bounds of the array.
  148. @warning This method may only be called during a write transaction.
  149. @param index The index of the object to be replaced.
  150. @param anObject An object (of the same type as returned from the `objectClassName` selector).
  151. */
  152. - (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectType)anObject;
  153. /**
  154. Moves the object at the given source index to the given destination index.
  155. Throws an exception if the index exceeds the bounds of the array.
  156. @warning This method may only be called during a write transaction.
  157. @param sourceIndex The index of the object to be moved.
  158. @param destinationIndex The index to which the object at `sourceIndex` should be moved.
  159. */
  160. - (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex;
  161. /**
  162. Exchanges the objects in the array at given indices.
  163. Throws an exception if either index exceeds the bounds of the array.
  164. @warning This method may only be called during a write transaction.
  165. @param index1 The index of the object which should replace the object at index `index2`.
  166. @param index2 The index of the object which should replace the object at index `index1`.
  167. */
  168. - (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2;
  169. #pragma mark - Querying an Array
  170. /**
  171. Returns the index of an object in the array.
  172. Returns `NSNotFound` if the object is not found in the array.
  173. @param object An object (of the same type as returned from the `objectClassName` selector).
  174. */
  175. - (NSUInteger)indexOfObject:(RLMObjectType)object;
  176. /**
  177. Returns the index of the first object in the array matching the predicate.
  178. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  179. @return The index of the object, or `NSNotFound` if the object is not found in the array.
  180. */
  181. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...;
  182. /// :nodoc:
  183. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args;
  184. /**
  185. Returns the index of the first object in the array matching the predicate.
  186. @param predicate The predicate with which to filter the objects.
  187. @return The index of the object, or `NSNotFound` if the object is not found in the array.
  188. */
  189. - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate;
  190. /**
  191. Returns all the objects matching the given predicate in the array.
  192. @param predicateFormat A predicate format string, optionally followed by a variable number of arguments.
  193. @return An `RLMResults` of objects that match the given predicate.
  194. */
  195. - (RLMResults<RLMObjectType> *)objectsWhere:(NSString *)predicateFormat, ...;
  196. /// :nodoc:
  197. - (RLMResults<RLMObjectType> *)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
  198. /**
  199. Returns all the objects matching the given predicate in the array.
  200. @param predicate The predicate with which to filter the objects.
  201. @return An `RLMResults` of objects that match the given predicate
  202. */
  203. - (RLMResults<RLMObjectType> *)objectsWithPredicate:(NSPredicate *)predicate;
  204. /**
  205. Returns a sorted `RLMResults` from the array.
  206. @param keyPath The key path to sort by.
  207. @param ascending The direction to sort in.
  208. @return An `RLMResults` sorted by the specified key path.
  209. */
  210. - (RLMResults<RLMObjectType> *)sortedResultsUsingKeyPath:(NSString *)keyPath ascending:(BOOL)ascending;
  211. /**
  212. Returns a sorted `RLMResults` from the array.
  213. @param properties An array of `RLMSortDescriptor`s to sort by.
  214. @return An `RLMResults` sorted by the specified properties.
  215. */
  216. - (RLMResults<RLMObjectType> *)sortedResultsUsingDescriptors:(NSArray<RLMSortDescriptor *> *)properties;
  217. /**
  218. Returns a distinct `RLMResults` from the array.
  219. @param keyPaths The key paths to distinct on.
  220. @return An `RLMResults` with the distinct values of the keypath(s).
  221. */
  222. - (RLMResults<RLMObjectType> *)distinctResultsUsingKeyPaths:(NSArray<NSString *> *)keyPaths;
  223. /// :nodoc:
  224. - (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index;
  225. /// :nodoc:
  226. - (void)setObject:(RLMObjectType)newValue atIndexedSubscript:(NSUInteger)index;
  227. #pragma mark - Sectioning an Array
  228. /**
  229. Sorts and sections this collection from a given property key path, returning the result
  230. as an instance of `RLMSectionedResults`.
  231. @param keyPath The property key path to sort on.
  232. @param ascending The direction to sort in.
  233. @param keyBlock A callback which is invoked on each element in the Results collection.
  234. This callback is to return the section key for the element in the collection.
  235. @return An instance of RLMSectionedResults.
  236. */
  237. - (RLMSectionedResults *)sectionedResultsSortedUsingKeyPath:(NSString *)keyPath
  238. ascending:(BOOL)ascending
  239. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  240. /**
  241. Sorts and sections this collection from a given array of sort descriptors, returning the result
  242. as an instance of `RLMSectionedResults`.
  243. @param sortDescriptors An array of `RLMSortDescriptor`s to sort by.
  244. @param keyBlock A callback which is invoked on each element in the Results collection.
  245. This callback is to return the section key for the element in the collection.
  246. @note The primary sort descriptor must be responsible for determining the section key.
  247. @return An instance of RLMSectionedResults.
  248. */
  249. - (RLMSectionedResults *)sectionedResultsUsingSortDescriptors:(NSArray<RLMSortDescriptor *> *)sortDescriptors
  250. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  251. #pragma mark - Notifications
  252. /**
  253. Registers a block to be called each time the array changes.
  254. The block will be asynchronously called with the initial array, and then
  255. called again after each write transaction which changes any of the objects in
  256. the array, which objects are in the results, or the order of the objects in the
  257. array.
  258. The `changes` parameter will be `nil` the first time the block is called. For
  259. each call after that, it will contain information about which rows in the
  260. array were added, removed or modified. If a write transaction did not modify
  261. any objects in the array, the block is not called at all. See the
  262. `RLMCollectionChange` documentation for information on how the changes are
  263. reported and an example of updating a `UITableView`.
  264. The error parameter is present only for backwards compatibility and will always
  265. be `nil`.
  266. Notifications are delivered via the standard run loop, and so can't be
  267. delivered while the run loop is blocked by other activity. When
  268. notifications can't be delivered instantly, multiple notifications may be
  269. coalesced into a single notification. This can include the notification
  270. with the initial results. For example, the following code performs a write
  271. transaction immediately after adding the notification block, so there is no
  272. opportunity for the initial notification to be delivered first. As a
  273. result, the initial notification will reflect the state of the Realm after
  274. the write transaction.
  275. Person *person = [[Person allObjectsInRealm:realm] firstObject];
  276. NSLog(@"person.dogs.count: %zu", person.dogs.count); // => 0
  277. self.token = [person.dogs addNotificationBlock(RLMArray<Dog *> *dogs,
  278. RLMCollectionChange *changes,
  279. NSError *error) {
  280. // Only fired once for the example
  281. NSLog(@"dogs.count: %zu", dogs.count) // => 1
  282. }];
  283. [realm transactionWithBlock:^{
  284. Dog *dog = [[Dog alloc] init];
  285. dog.name = @"Rex";
  286. [person.dogs addObject:dog];
  287. }];
  288. // end of run loop execution context
  289. You must retain the returned token for as long as you want updates to continue
  290. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  291. @warning This method cannot be called during a write transaction, or when the
  292. containing Realm is read-only.
  293. @warning This method may only be called on a non-frozen managed array.
  294. @param block The block to be called each time the array changes.
  295. @return A token which must be held for as long as you want updates to be delivered.
  296. */
  297. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray<RLMObjectType> *_Nullable array,
  298. RLMCollectionChange *_Nullable changes,
  299. NSError *_Nullable error))block
  300. __attribute__((warn_unused_result));
  301. /**
  302. Registers a block to be called each time the array changes.
  303. The block will be asynchronously called with the initial array, and then
  304. called again after each write transaction which changes any of the objects in
  305. the array, which objects are in the results, or the order of the objects in the
  306. array.
  307. The `changes` parameter will be `nil` the first time the block is called.
  308. For each call after that, it will contain information about
  309. which rows in the array were added, removed or modified. If a write transaction
  310. did not modify any objects in the array, the block is not called at all.
  311. See the `RLMCollectionChange` documentation for information on how the changes
  312. are reported and an example of updating a `UITableView`.
  313. The error parameter is present only for backwards compatibility and will always
  314. be `nil`.
  315. Notifications are delivered on the given queue. If the queue is blocked and
  316. notifications can't be delivered instantly, multiple notifications may be
  317. coalesced into a single notification.
  318. You must retain the returned token for as long as you want updates to continue
  319. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  320. @warning This method cannot be called when the containing Realm is read-only or frozen.
  321. @warning The queue must be a serial queue.
  322. @param block The block to be called whenever a change occurs.
  323. @param queue The serial queue to deliver notifications to.
  324. @return A token which must be held for as long as you want updates to be delivered.
  325. */
  326. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray<RLMObjectType> *_Nullable array,
  327. RLMCollectionChange *_Nullable changes,
  328. NSError *_Nullable error))block
  329. queue:(nullable dispatch_queue_t)queue
  330. __attribute__((warn_unused_result));
  331. /**
  332. Registers a block to be called each time the array changes.
  333. The block will be asynchronously called with the initial array, and then
  334. called again after each write transaction which changes any of the objects in
  335. the array, which objects are in the results, or the order of the objects in the
  336. array.
  337. The `changes` parameter will be `nil` the first time the block is called.
  338. For each call after that, it will contain information about
  339. which rows in the array were added, removed or modified. If a write transaction
  340. did not modify any objects in the array, the block is not called at all.
  341. See the `RLMCollectionChange` documentation for information on how the changes
  342. are reported and an example of updating a `UITableView`.
  343. The error parameter is present only for backwards compatibility and will always
  344. be `nil`.
  345. Notifications are delivered on the given queue. If the queue is blocked and
  346. notifications can't be delivered instantly, multiple notifications may be
  347. coalesced into a single notification.
  348. You must retain the returned token for as long as you want updates to continue
  349. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  350. @warning This method cannot be called when the containing Realm is read-only or frozen.
  351. @warning The queue must be a serial queue.
  352. @param block The block to be called whenever a change occurs.
  353. @param keyPaths The block will be called for changes occurring on these keypaths. If no
  354. key paths are given, notifications are delivered for every property key path.
  355. @param queue The serial queue to deliver notifications to.
  356. @return A token which must be held for as long as you want updates to be delivered.
  357. */
  358. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray<RLMObjectType> *_Nullable array,
  359. RLMCollectionChange *_Nullable changes,
  360. NSError *_Nullable error))block
  361. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  362. queue:(nullable dispatch_queue_t)queue
  363. __attribute__((warn_unused_result));
  364. /**
  365. Registers a block to be called each time the array changes.
  366. The block will be asynchronously called with the initial array, and then
  367. called again after each write transaction which changes any of the objects in
  368. the array, which objects are in the results, or the order of the objects in the
  369. array.
  370. The `changes` parameter will be `nil` the first time the block is called.
  371. For each call after that, it will contain information about
  372. which rows in the array were added, removed or modified. If a write transaction
  373. did not modify any objects in the array, the block is not called at all.
  374. See the `RLMCollectionChange` documentation for information on how the changes
  375. are reported and an example of updating a `UITableView`.
  376. The error parameter is present only for backwards compatibility and will always
  377. be `nil`.
  378. Notifications are delivered via the standard run loop, and so can't be
  379. delivered while the run loop is blocked by other activity. When
  380. notifications can't be delivered instantly, multiple notifications may be
  381. coalesced into a single notification. This can include the notification
  382. with the initial results. For example, the following code performs a write
  383. transaction immediately after adding the notification block, so there is no
  384. opportunity for the initial notification to be delivered first. As a
  385. result, the initial notification will reflect the state of the Realm after
  386. the write transaction.
  387. You must retain the returned token for as long as you want updates to continue
  388. to be sent to the block. To stop receiving updates, call `-invalidate` on the token.
  389. @warning This method cannot be called when the containing Realm is read-only or frozen.
  390. @warning The queue must be a serial queue.
  391. @param block The block to be called whenever a change occurs.
  392. @param keyPaths The block will be called for changes occurring on these keypaths. If no
  393. key paths are given, notifications are delivered for every property key path.
  394. @return A token which must be held for as long as you want updates to be delivered.
  395. */
  396. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray<RLMObjectType> *_Nullable array,
  397. RLMCollectionChange *_Nullable changes,
  398. NSError *_Nullable error))block
  399. keyPaths:(nullable NSArray<NSString *> *)keyPaths
  400. __attribute__((warn_unused_result));
  401. #pragma mark - Aggregating Property Values
  402. /**
  403. Returns the minimum (lowest) value of the given property among all the objects in the array.
  404. NSNumber *min = [object.arrayProperty minOfProperty:@"age"];
  405. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  406. @param property The property whose minimum value is desired. Only properties of
  407. types `int`, `float`, `double`, and `NSDate` are supported.
  408. @return The minimum value of the property, or `nil` if the array is empty.
  409. */
  410. - (nullable id)minOfProperty:(NSString *)property;
  411. /**
  412. Returns the maximum (highest) value of the given property among all the objects in the array.
  413. NSNumber *max = [object.arrayProperty maxOfProperty:@"age"];
  414. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  415. @param property The property whose maximum value is desired. Only properties of
  416. types `int`, `float`, `double`, and `NSDate` are supported.
  417. @return The maximum value of the property, or `nil` if the array is empty.
  418. */
  419. - (nullable id)maxOfProperty:(NSString *)property;
  420. /**
  421. Returns the sum of the values of a given property over all the objects in the array.
  422. NSNumber *sum = [object.arrayProperty sumOfProperty:@"age"];
  423. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  424. @param property The property whose values should be summed. Only properties of
  425. types `int`, `float`, and `double` are supported.
  426. @return The sum of the given property.
  427. */
  428. - (NSNumber *)sumOfProperty:(NSString *)property;
  429. /**
  430. Returns the average value of a given property over the objects in the array.
  431. NSNumber *average = [object.arrayProperty averageOfProperty:@"age"];
  432. @warning You cannot use this method on `RLMObject`, `RLMArray`, and `NSData` properties.
  433. @param property The property whose average value should be calculated. Only
  434. properties of types `int`, `float`, and `double` are supported.
  435. @return The average value of the given property, or `nil` if the array is empty.
  436. */
  437. - (nullable NSNumber *)averageOfProperty:(NSString *)property;
  438. #pragma mark - Freeze
  439. /**
  440. Returns a frozen (immutable) snapshot of this array.
  441. The frozen copy is an immutable array which contains the same data as this
  442. array currently contains, but will not update when writes are made to the
  443. containing Realm. Unlike live arrays, frozen arrays can be accessed from any
  444. thread.
  445. @warning This method cannot be called during a write transaction, or when the
  446. containing Realm is read-only.
  447. @warning This method may only be called on a managed array.
  448. @warning Holding onto a frozen array for an extended period while performing
  449. write transaction on the Realm may result in the Realm file growing
  450. to large sizes. See `RLMRealmConfiguration.maximumNumberOfActiveVersions`
  451. for more information.
  452. */
  453. - (instancetype)freeze;
  454. /**
  455. Returns a live version of this frozen collection.
  456. This method resolves a reference to a live copy of the same frozen collection.
  457. If called on a live collection, will return itself.
  458. */
  459. - (instancetype)thaw;
  460. #pragma mark - Unavailable Methods
  461. /**
  462. `-[RLMArray init]` is not available because `RLMArray`s cannot be created directly.
  463. `RLMArray` properties on `RLMObject`s are lazily created when accessed.
  464. */
  465. - (instancetype)init __attribute__((unavailable("RLMArrays cannot be created directly")));
  466. /**
  467. `+[RLMArray new]` is not available because `RLMArray`s cannot be created directly.
  468. `RLMArray` properties on `RLMObject`s are lazily created when accessed.
  469. */
  470. + (instancetype)new __attribute__((unavailable("RLMArrays cannot be created directly")));
  471. @end
  472. /// :nodoc:
  473. @interface RLMArray (Swift)
  474. // for use only in Swift class definitions
  475. - (instancetype)initWithObjectClassName:(NSString *)objectClassName;
  476. @end
  477. RLM_HEADER_AUDIT_END(nullability, sendability)