Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit e7c9112

Browse files
committed
Remove abstract keyword from method documentation.
1 parent 23efddb commit e7c9112

File tree

12 files changed

+104
-104
lines changed

12 files changed

+104
-104
lines changed

ParseUI/Classes/Cells/PFCollectionViewCell.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ NS_ASSUME_NONNULL_BEGIN
3535
@interface PFCollectionViewCell : UICollectionViewCell
3636

3737
/**
38-
@abstract A simple lazy-loaded label for the collection view cell.
38+
A simple lazy-loaded label for the collection view cell.
3939
*/
4040
@property (nonatomic, strong, readonly) UILabel *textLabel;
4141

4242
/**
43-
@abstract The lazy-loaded imageView of the collection view cell.
43+
The lazy-loaded imageView of the collection view cell.
4444
4545
@see PFImageView
4646
*/
4747
@property (nonatomic, strong, readonly) PFImageView *imageView;
4848

4949
/**
50-
@abstract This method should update all the relevant information inside a subclass of `PFCollectionViewCell`.
50+
This method should update all the relevant information inside a subclass of `PFCollectionViewCell`.
5151
5252
@discussion This method is automatically called by <PFQueryCollectionViewController> whenever the cell
5353
should display new information. By default this method does nothing.

ParseUI/Classes/Cells/PFPurchaseTableViewCell.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ typedef NS_ENUM(uint8_t, PFPurchaseTableViewCellState) {
4848
@interface PFPurchaseTableViewCell : PFTableViewCell
4949

5050
/**
51-
@abstract State of the cell.
51+
State of the cell.
5252
@see PFPurchaseTableViewCellState
5353
*/
5454
@property (nonatomic, assign) PFPurchaseTableViewCellState state;
5555

5656
/**
57-
@abstract Label where price of the product is displayed.
57+
Label where price of the product is displayed.
5858
*/
5959
@property (nullable, nonatomic, strong, readonly) UILabel *priceLabel;
6060

6161
/**
62-
@abstract Progress view that is shown, when the product is downloading.
62+
Progress view that is shown, when the product is downloading.
6363
*/
6464
@property (nullable, nonatomic, strong, readonly) UIProgressView *progressView;
6565

ParseUI/Classes/Cells/PFTableViewCell.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ NS_ASSUME_NONNULL_BEGIN
3535
@interface PFTableViewCell : UITableViewCell
3636

3737
/**
38-
@abstract The imageView of the table view cell.
38+
The imageView of the table view cell.
3939
4040
@see PFImageView
4141
*/

ParseUI/Classes/LogInViewController/PFLogInView.h

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
6969
///--------------------------------------
7070

7171
/**
72-
@abstract Initializes the view with the specified log in elements.
72+
Initializes the view with the specified log in elements.
7373
7474
@param fields A bitmask specifying the log in elements which are enabled in the view
7575
@@ -80,7 +80,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
8080
- (instancetype)initWithFields:(PFLogInFields)fields;
8181

8282
/**
83-
@abstract The view controller that will present this view.
83+
The view controller that will present this view.
8484
8585
@discussion Used to lay out elements correctly when the presenting view controller has translucent elements.
8686
*/
@@ -98,7 +98,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
9898
///--------------------------------------
9999

100100
/**
101-
@abstract If email should be used to log in, instead of username
101+
If email should be used to log in, instead of username
102102
103103
@discussion By default, this is set to `NO`.
104104
*/
@@ -109,59 +109,59 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
109109
///--------------------------------------
110110

111111
/**
112-
@abstract The bitmask which specifies the enabled log in elements in the view.
112+
The bitmask which specifies the enabled log in elements in the view.
113113
*/
114114
@property (nonatomic, assign, readonly) PFLogInFields fields;
115115

116116
/**
117-
@abstract The username text field. It is `nil` if the element is not enabled.
117+
The username text field. It is `nil` if the element is not enabled.
118118
*/
119119
@property (nullable, nonatomic, strong, readonly) PFTextField *usernameField;
120120

121121
/**
122-
@abstract The password text field. It is `nil` if the element is not enabled.
122+
The password text field. It is `nil` if the element is not enabled.
123123
*/
124124
@property (nullable, nonatomic, strong, readonly) PFTextField *passwordField;
125125

126126
/**
127-
@abstract The password forgotten button. It is `nil` if the element is not enabled.
127+
The password forgotten button. It is `nil` if the element is not enabled.
128128
*/
129129
@property (nullable, nonatomic, strong, readonly) UIButton *passwordForgottenButton;
130130

131131
/**
132-
@abstract The log in button. It is `nil` if the element is not enabled.
132+
The log in button. It is `nil` if the element is not enabled.
133133
*/
134134
@property (nullable, nonatomic, strong, readonly) UIButton *logInButton;
135135

136136
/**
137-
@abstract The Facebook button. It is `nil` if the element is not enabled.
137+
The Facebook button. It is `nil` if the element is not enabled.
138138
*/
139139
@property (nullable, nonatomic, strong, readonly) UIButton *facebookButton;
140140

141141
/**
142-
@abstract The Twitter button. It is `nil` if the element is not enabled.
142+
The Twitter button. It is `nil` if the element is not enabled.
143143
*/
144144
@property (nullable, nonatomic, strong, readonly) UIButton *twitterButton;
145145

146146
/**
147-
@abstract The sign up button. It is `nil` if the element is not enabled.
147+
The sign up button. It is `nil` if the element is not enabled.
148148
*/
149149
@property (nullable, nonatomic, strong, readonly) UIButton *signUpButton;
150150

151151
/**
152-
@abstract It is `nil` if the element is not enabled.
152+
It is `nil` if the element is not enabled.
153153
*/
154154
@property (nullable, nonatomic, strong, readonly) UIButton *dismissButton;
155155

156156
/**
157-
@abstract The facebook/twitter login label.
157+
The facebook/twitter login label.
158158
159159
@deprecated This property is deprecated and will always be nil.
160160
*/
161161
@property (nullable, nonatomic, strong, readonly) UILabel *externalLogInLabel __attribute__(PARSE_UI_DEPRECATED("This property is deprecated and will always be nil."));
162162

163163
/**
164-
@abstract The sign up label.
164+
The sign up label.
165165
166166
@deprecated This property is deprecated and will always be nil.
167167
*/

ParseUI/Classes/LogInViewController/PFLogInViewController.h

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ NS_ASSUME_NONNULL_BEGIN
4040
///--------------------------------------
4141

4242
/**
43-
@abstract A bitmask specifying the log in elements which are enabled in the view.
43+
A bitmask specifying the log in elements which are enabled in the view.
4444
4545
@see PFLogInFields
4646
*/
4747
@property (nonatomic, assign) PFLogInFields fields;
4848

4949

5050
/**
51-
@abstract The log in view. It contains all the enabled log in elements.
51+
The log in view. It contains all the enabled log in elements.
5252
5353
@see PFLogInView
5454
*/
@@ -59,29 +59,29 @@ NS_ASSUME_NONNULL_BEGIN
5959
///--------------------------------------
6060

6161
/**
62-
@abstract The delegate that responds to the control events of `PFLogInViewController`.
62+
The delegate that responds to the control events of `PFLogInViewController`.
6363
6464
@see PFLogInViewControllerDelegate
6565
*/
6666
@property (nullable, nonatomic, weak) id<PFLogInViewControllerDelegate> delegate;
6767

6868
/**
69-
@abstract The facebook permissions that Facebook log in requests for.
69+
The facebook permissions that Facebook log in requests for.
7070
7171
@discussion If unspecified, the default is basic facebook permissions.
7272
*/
7373
@property (nullable, nonatomic, copy) NSArray *facebookPermissions;
7474

7575
/**
76-
@abstract The sign up controller if sign up is enabled.
76+
The sign up controller if sign up is enabled.
7777
7878
@discussion Use this to configure the sign up view, and the transition animation to the sign up view.
7979
The default is a sign up view with a username, a password, a dismiss button and a sign up button.
8080
*/
8181
@property (nullable, nonatomic, strong) PFSignUpViewController *signUpController;
8282

8383
/**
84-
@abstract Whether to prompt for the email as username on the login view.
84+
Whether to prompt for the email as username on the login view.
8585
8686
@discussion If set to `YES`, we'll prompt for the email in the username field.
8787
This property value propagates to the attached <signUpController>.
@@ -96,18 +96,18 @@ NS_ASSUME_NONNULL_BEGIN
9696
///--------------------------------------
9797

9898
/**
99-
@abstract The notification is posted immediately after the log in succeeds.
99+
The notification is posted immediately after the log in succeeds.
100100
*/
101101
extern NSString *const PFLogInSuccessNotification;
102102

103103
/**
104-
@abstract The notification is posted immediately after the log in fails.
104+
The notification is posted immediately after the log in fails.
105105
@discussion If the delegate prevents the log in from starting, the notification is not sent.
106106
*/
107107
extern NSString *const PFLogInFailureNotification;
108108

109109
/**
110-
@abstract The notification is posted immediately after the log in is cancelled.
110+
The notification is posted immediately after the log in is cancelled.
111111
*/
112112
extern NSString *const PFLogInCancelNotification;
113113

@@ -128,7 +128,7 @@ extern NSString *const PFLogInCancelNotification;
128128
///--------------------------------------
129129

130130
/**
131-
@abstract Sent to the delegate to determine whether the log in request should be submitted to the server.
131+
Sent to the delegate to determine whether the log in request should be submitted to the server.
132132
133133
@param logInController The login view controller that is requesting the data.
134134
@param username the username the user tries to log in with.
@@ -145,15 +145,15 @@ shouldBeginLogInWithUsername:(NSString *)username
145145
///--------------------------------------
146146

147147
/**
148-
@abstract Sent to the delegate when a <PFUser> is logged in.
148+
Sent to the delegate when a <PFUser> is logged in.
149149
150150
@param logInController The login view controller where login finished.
151151
@param user <PFUser> object that is a result of the login.
152152
*/
153153
- (void)logInViewController:(PFLogInViewController *)logInController didLogInUser:(PFUser *)user;
154154

155155
/**
156-
@abstract Sent to the delegate when the log in attempt fails.
156+
Sent to the delegate when the log in attempt fails.
157157
158158
@discussion If you implement this method, PFLoginViewController will not automatically show its default
159159
login failure alert view. Instead, you should show your custom alert view in your implementation.
@@ -165,7 +165,7 @@ shouldBeginLogInWithUsername:(NSString *)username
165165
didFailToLogInWithError:(nullable NSError *)error;
166166

167167
/**
168-
@abstract Sent to the delegate when the log in screen is cancelled.
168+
Sent to the delegate when the log in screen is cancelled.
169169
170170
@param logInController The login view controller where login was cancelled.
171171
*/

ParseUI/Classes/ProductTableViewController/PFProductTableViewController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ NS_ASSUME_NONNULL_BEGIN
3434
@interface PFProductTableViewController : PFQueryTableViewController
3535

3636
/**
37-
@abstract Initializes a product table view controller.
37+
Initializes a product table view controller.
3838
3939
@param style The UITableViewStyle for the table
4040

0 commit comments

Comments
 (0)