2626
2727NS_ASSUME_NONNULL_BEGIN
2828
29- @class BFTask PF_GENERIC ( __covariant BFGenericType) ;
29+ @class BFTask< __covariant BFGenericType> ;
3030@class PFObject;
3131@class PFQuery;
3232@class PFTableViewCell;
@@ -149,7 +149,7 @@ NS_ASSUME_NONNULL_BEGIN
149149/* *
150150 The array of instances of `PFObject` that is used as a data source.
151151 */
152- @property (nullable , nonatomic , copy , readonly ) NSArray PF_GENERIC ( __kindof PFObject *) *objects;
152+ @property (nullable , nonatomic , copy , readonly ) NSArray < __kindof PFObject *> *objects;
153153
154154/* *
155155 Returns an object at a particular indexPath.
@@ -176,12 +176,12 @@ NS_ASSUME_NONNULL_BEGIN
176176/* *
177177 Removes all objects at the specified index paths, animated.
178178 */
179- - (void )removeObjectsAtIndexPaths : (nullable NSArray PF_GENERIC ( NSIndexPath *) *)indexPaths;
179+ - (void )removeObjectsAtIndexPaths : (nullable NSArray < NSIndexPath *> *)indexPaths ;
180180
181181/* *
182182 Removes all objects at the specified index paths, with or without animation.
183183 */
184- - (void )removeObjectsAtIndexPaths : (nullable NSArray PF_GENERIC ( NSIndexPath *) *)indexPaths animated:(BOOL )animated;
184+ - (void )removeObjectsAtIndexPaths : (nullable NSArray < NSIndexPath *> *)indexPaths animated : (BOOL )animated ;
185185
186186/* *
187187 Clears the table of all objects.
@@ -193,7 +193,7 @@ NS_ASSUME_NONNULL_BEGIN
193193
194194 @return An awaitable task that completes when the reload succeeds
195195 */
196- - (BFTask PF_GENERIC ( NSArray <__kindof PFObject *> *) *)loadObjects;
196+ - (BFTask< NSArray<__kindof PFObject *> *> *)loadObjects ;
197197
198198/* *
199199 Loads the objects of the className at the specified page and appends it to the
@@ -204,7 +204,7 @@ NS_ASSUME_NONNULL_BEGIN
204204
205205 @return An awaitable task that completes when the reload succeeds
206206 */
207- - (BFTask PF_GENERIC ( NSArray <__kindof PFObject *> *) *)loadObjects:(NSInteger )page clear:(BOOL )clear;
207+ - (BFTask< NSArray<__kindof PFObject *> *> *)loadObjects : (NSInteger )page clear : (BOOL )clear ;
208208
209209/* *
210210 Loads the next page of objects, appends to table, and refreshes.
0 commit comments