@@ -31,7 +31,7 @@ NS_ASSUME_NONNULL_BEGIN
3131@class PFQuery;
3232
3333/* *
34- This class allows you to think about a one-to-one mapping between a < PFObject> and a `UICollectionViewCell`,
34+ This class allows you to think about a one-to-one mapping between a ` PFObject` and a `UICollectionViewCell`,
3535 rather than having to juggle index paths.
3636
3737 You also get the following features out of the box:
@@ -43,12 +43,12 @@ NS_ASSUME_NONNULL_BEGIN
4343 - Automatic loading and management of the objects array.
4444 - Various methods that can be overridden to customize behavior at major events in the data cycle.
4545
46- @see PFCollectionViewCell
46+ @see ` PFCollectionViewCell`
4747 */
4848@interface PFQueryCollectionViewController : UICollectionViewController <UICollectionViewDelegateFlowLayout>
4949
5050/* *
51- The class name of the < PFObject> this collection will use as a datasource.
51+ The class name of the ` PFObject` this collection will use as a datasource.
5252 */
5353@property (nullable , nonatomic , copy ) IBInspectable NSString *parseClassName;
5454
@@ -83,19 +83,19 @@ NS_ASSUME_NONNULL_BEGIN
8383
8484/* *
8585 Initializes a view controller with a `UICollectionViewFlowLayout` and a class name
86- of < PFObject> that will be associated with this collection.
86+ of ` PFObject` that will be associated with this collection.
8787
88- @param className The class name of the instances of < PFObject> that this table will display.
88+ @param className The class name of the instances of ` PFObject` that this table will display.
8989
9090 @return An initialized `PFQueryCollectionViewController` object or `nil` if the object couldn't be created.
9191 */
9292- (instancetype )initWithClassName : (nullable NSString *)className ;
9393
9494/* *
95- Initializes a view controller with a class name of < PFObject> that will be associated with this collection.
95+ Initializes a view controller with a class name of ` PFObject` that will be associated with this collection.
9696
9797 @param layout Layout for collection view to use.
98- @param className The class name of the instances of < PFObject> that this table will display.
98+ @param className The class name of the instances of ` PFObject` that this table will display.
9999
100100 @return An initialized `PFQueryCollectionViewController` object or `nil` if the object couldn't be created.
101101 */
@@ -124,7 +124,7 @@ NS_ASSUME_NONNULL_BEGIN
124124// /--------------------------------------
125125
126126/* *
127- The array of instances of < PFObject> that is used as a data source.
127+ The array of instances of ` PFObject` that is used as a data source.
128128 */
129129@property (nonatomic , copy , readonly ) NSArray *objects;
130130
@@ -162,7 +162,7 @@ NS_ASSUME_NONNULL_BEGIN
162162- (BFTask *)loadObjects ;
163163
164164/* *
165- Loads the objects of the < parseClassName> at the specified page and appends it to the
165+ Loads the objects of the `PFObject. parseClassName` at the specified page and appends it to the
166166 objects already loaded and refreshes the collection.
167167
168168 @param page The page of objects to load.
@@ -187,7 +187,7 @@ NS_ASSUME_NONNULL_BEGIN
187187// /--------------------------------------
188188
189189/* *
190- Override to construct your own custom < PFQuery> to get the objects.
190+ Override to construct your own custom ` PFQuery` to get the objects.
191191
192192 @return An instance of `PFQuery` that `-loadObjects` method will use to the objects for this collection.
193193 */
@@ -198,13 +198,13 @@ NS_ASSUME_NONNULL_BEGIN
198198// /--------------------------------------
199199
200200/* *
201- Override this method to customize each cell given a < PFObject> that is loaded.
201+ Override this method to customize each cell given a ` PFObject` that is loaded.
202202
203- @warning The cell should inherit from < PFCollectionViewCell> which is a subclass of `UICollectionViewCell`.
203+ @warning The cell should inherit from ` PFCollectionViewCell` which is a subclass of `UICollectionViewCell`.
204204
205205 @param collectionView The collection view object associated with this controller.
206206 @param indexPath The indexPath of the cell.
207- @param object The < PFObject> that is associated with the cell.
207+ @param object The ` PFObject` that is associated with the cell.
208208
209209 @return The cell that represents this object.
210210 */
0 commit comments