2525
2626NS_ASSUME_NONNULL_BEGIN
2727
28- /* !
28+ /* *
2929 `PFLogInFields` bitmask specifies the log in elements which are enabled in the view.
3030
3131 @see PFLogInViewController
3232 @see PFLogInView
3333 */
3434typedef NS_OPTIONS (NSInteger , PFLogInFields) {
35- /* ! No fields. */
35+ /* * No fields. */
3636 PFLogInFieldsNone = 0 ,
37- /* ! Username and password fields. */
37+ /* * Username and password fields. */
3838 PFLogInFieldsUsernameAndPassword = 1 << 0 ,
39- /* ! Forgot password button. */
39+ /* * Forgot password button. */
4040 PFLogInFieldsPasswordForgotten = 1 << 1 ,
41- /* ! Login button. */
41+ /* * Login button. */
4242 PFLogInFieldsLogInButton = 1 << 2 ,
43- /* ! Button to login with Facebook. */
43+ /* * Button to login with Facebook. */
4444 PFLogInFieldsFacebook = 1 << 3 ,
45- /* ! Button to login with Twitter. */
45+ /* * Button to login with Twitter. */
4646 PFLogInFieldsTwitter = 1 << 4 ,
47- /* ! Signup Button. */
47+ /* * Signup Button. */
4848 PFLogInFieldsSignUpButton = 1 << 5 ,
49- /* ! Dismiss Button. */
49+ /* * Dismiss Button. */
5050 PFLogInFieldsDismissButton = 1 << 6 ,
5151
52- /* ! Default value. Combines Username, Password, Login, Signup, Forgot Password and Dismiss buttons. */
52+ /* * Default value. Combines Username, Password, Login, Signup, Forgot Password and Dismiss buttons. */
5353 PFLogInFieldsDefault = (PFLogInFieldsUsernameAndPassword |
5454 PFLogInFieldsLogInButton |
5555 PFLogInFieldsSignUpButton |
@@ -59,30 +59,30 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
5959
6060@class PFTextField;
6161
62- /* !
63- The `PFLogInView` class provides a standard log in interface for authenticating a < PFUser> .
62+ /* *
63+ The `PFLogInView` class provides a standard log in interface for authenticating a ` PFUser` .
6464 */
6565@interface PFLogInView : UIScrollView
6666
6767// /--------------------------------------
6868// / @name Creating Log In View
6969// /--------------------------------------
7070
71- /* !
72- @abstract Initializes the view with the specified log in elements.
71+ /* *
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
76- @returns An initialized `PFLogInView` object or `nil` if the object couldn't be created.
76+ @return An initialized `PFLogInView` object or `nil` if the object couldn't be created.
7777
7878 @see PFLogInFields
7979 */
8080- (instancetype )initWithFields : (PFLogInFields)fields ;
8181
82- /* !
83- @abstract The view controller that will present this view.
82+ /* *
83+ The view controller that will present this view.
8484
85- @discussion Used to lay out elements correctly when the presenting view controller has translucent elements.
85+ Used to lay out elements correctly when the presenting view controller has translucent elements.
8686 */
8787@property (nullable , nonatomic , weak ) UIViewController *presentingViewController;
8888
@@ -97,71 +97,71 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
9797// / @name Configure Username Behaviour
9898// /--------------------------------------
9999
100- /* !
101- @abstract If email should be used to log in, instead of username
100+ /* *
101+ If email should be used to log in, instead of username
102102
103- @discussion By default, this is set to `NO`.
103+ By default, this is set to `NO`.
104104 */
105105@property (nonatomic , assign ) BOOL emailAsUsername;
106106
107107// /--------------------------------------
108108// / @name Log In Elements
109109// /--------------------------------------
110110
111- /* !
112- @abstract The bitmask which specifies the enabled log in elements in the view.
111+ /* *
112+ The bitmask which specifies the enabled log in elements in the view.
113113 */
114114@property (nonatomic , assign , readonly ) PFLogInFields fields;
115115
116- /* !
117- @abstract The username text field. It is `nil` if the element is not enabled.
116+ /* *
117+ The username text field. It is `nil` if the element is not enabled.
118118 */
119119@property (nullable , nonatomic , strong , readonly ) PFTextField *usernameField;
120120
121- /* !
122- @abstract The password text field. It is `nil` if the element is not enabled.
121+ /* *
122+ The password text field. It is `nil` if the element is not enabled.
123123 */
124124@property (nullable , nonatomic , strong , readonly ) PFTextField *passwordField;
125125
126- /* !
127- @abstract The password forgotten button. It is `nil` if the element is not enabled.
126+ /* *
127+ The password forgotten button. It is `nil` if the element is not enabled.
128128 */
129129@property (nullable , nonatomic , strong , readonly ) UIButton *passwordForgottenButton;
130130
131- /* !
132- @abstract The log in button. It is `nil` if the element is not enabled.
131+ /* *
132+ The log in button. It is `nil` if the element is not enabled.
133133 */
134134@property (nullable , nonatomic , strong , readonly ) UIButton *logInButton;
135135
136- /* !
137- @abstract The Facebook button. It is `nil` if the element is not enabled.
136+ /* *
137+ The Facebook button. It is `nil` if the element is not enabled.
138138 */
139139@property (nullable , nonatomic , strong , readonly ) UIButton *facebookButton;
140140
141- /* !
142- @abstract The Twitter button. It is `nil` if the element is not enabled.
141+ /* *
142+ The Twitter button. It is `nil` if the element is not enabled.
143143 */
144144@property (nullable , nonatomic , strong , readonly ) UIButton *twitterButton;
145145
146- /* !
147- @abstract The sign up button. It is `nil` if the element is not enabled.
146+ /* *
147+ The sign up button. It is `nil` if the element is not enabled.
148148 */
149149@property (nullable , nonatomic , strong , readonly ) UIButton *signUpButton;
150150
151- /* !
152- @abstract It is `nil` if the element is not enabled.
151+ /* *
152+ It is `nil` if the element is not enabled.
153153 */
154154@property (nullable , nonatomic , strong , readonly ) UIButton *dismissButton;
155155
156- /* !
157- @abstract The facebook/twitter login label.
156+ /* *
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
163- /* !
164- @abstract The sign up label.
163+ /* *
164+ The sign up label.
165165
166166 @deprecated This property is deprecated and will always be nil.
167167 */
0 commit comments