26
26
27
27
NS_ASSUME_NONNULL_BEGIN
28
28
29
- @class BFTask PF_GENERIC ( __covariant BFGenericType) ;
29
+ @class BFTask< __covariant BFGenericType> ;
30
30
@class PFObject;
31
31
@class PFQuery;
32
32
@class PFTableViewCell;
@@ -149,7 +149,7 @@ NS_ASSUME_NONNULL_BEGIN
149
149
/* *
150
150
The array of instances of `PFObject` that is used as a data source.
151
151
*/
152
- @property (nullable , nonatomic , copy , readonly ) NSArray PF_GENERIC ( __kindof PFObject *) *objects;
152
+ @property (nullable , nonatomic , copy , readonly ) NSArray < __kindof PFObject *> *objects;
153
153
154
154
/* *
155
155
Returns an object at a particular indexPath.
@@ -176,12 +176,12 @@ NS_ASSUME_NONNULL_BEGIN
176
176
/* *
177
177
Removes all objects at the specified index paths, animated.
178
178
*/
179
- - (void )removeObjectsAtIndexPaths : (nullable NSArray PF_GENERIC ( NSIndexPath *) *)indexPaths;
179
+ - (void )removeObjectsAtIndexPaths : (nullable NSArray < NSIndexPath *> *)indexPaths ;
180
180
181
181
/* *
182
182
Removes all objects at the specified index paths, with or without animation.
183
183
*/
184
- - (void )removeObjectsAtIndexPaths : (nullable NSArray PF_GENERIC ( NSIndexPath *) *)indexPaths animated:(BOOL )animated;
184
+ - (void )removeObjectsAtIndexPaths : (nullable NSArray < NSIndexPath *> *)indexPaths animated : (BOOL )animated ;
185
185
186
186
/* *
187
187
Clears the table of all objects.
@@ -193,7 +193,7 @@ NS_ASSUME_NONNULL_BEGIN
193
193
194
194
@return An awaitable task that completes when the reload succeeds
195
195
*/
196
- - (BFTask PF_GENERIC ( NSArray <__kindof PFObject *> *) *)loadObjects;
196
+ - (BFTask< NSArray<__kindof PFObject *> *> *)loadObjects ;
197
197
198
198
/* *
199
199
Loads the objects of the className at the specified page and appends it to the
@@ -204,7 +204,7 @@ NS_ASSUME_NONNULL_BEGIN
204
204
205
205
@return An awaitable task that completes when the reload succeeds
206
206
*/
207
- - (BFTask PF_GENERIC ( NSArray <__kindof PFObject *> *) *)loadObjects:(NSInteger )page clear:(BOOL )clear;
207
+ - (BFTask< NSArray<__kindof PFObject *> *> *)loadObjects : (NSInteger )page clear : (BOOL )clear ;
208
208
209
209
/* *
210
210
Loads the next page of objects, appends to table, and refreshes.
0 commit comments