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,7 +59,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
5959
6060@class PFTextField;
6161
62- /* !
62+ /* *
6363 The `PFLogInView` class provides a standard log in interface for authenticating a <PFUser>.
6464 */
6565@interface PFLogInView : UIScrollView
@@ -68,7 +68,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
6868// / @name Creating Log In View
6969// /--------------------------------------
7070
71- /* !
71+ /* *
7272 @abstract 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
@@ -79,7 +79,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
7979 */
8080- (instancetype )initWithFields : (PFLogInFields)fields ;
8181
82- /* !
82+ /* *
8383 @abstract 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.
@@ -97,7 +97,7 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
9797// / @name Configure Username Behaviour
9898// /--------------------------------------
9999
100- /* !
100+ /* *
101101 @abstract If email should be used to log in, instead of username
102102
103103 @discussion By default, this is set to `NO`.
@@ -108,59 +108,59 @@ typedef NS_OPTIONS(NSInteger, PFLogInFields) {
108108// / @name Log In Elements
109109// /--------------------------------------
110110
111- /* !
111+ /* *
112112 @abstract The bitmask which specifies the enabled log in elements in the view.
113113 */
114114@property (nonatomic , assign , readonly ) PFLogInFields fields;
115115
116- /* !
116+ /* *
117117 @abstract The username text field. It is `nil` if the element is not enabled.
118118 */
119119@property (nullable , nonatomic , strong , readonly ) PFTextField *usernameField;
120120
121- /* !
121+ /* *
122122 @abstract The password text field. It is `nil` if the element is not enabled.
123123 */
124124@property (nullable , nonatomic , strong , readonly ) PFTextField *passwordField;
125125
126- /* !
126+ /* *
127127 @abstract The password forgotten button. It is `nil` if the element is not enabled.
128128 */
129129@property (nullable , nonatomic , strong , readonly ) UIButton *passwordForgottenButton;
130130
131- /* !
131+ /* *
132132 @abstract The log in button. It is `nil` if the element is not enabled.
133133 */
134134@property (nullable , nonatomic , strong , readonly ) UIButton *logInButton;
135135
136- /* !
136+ /* *
137137 @abstract The Facebook button. It is `nil` if the element is not enabled.
138138 */
139139@property (nullable , nonatomic , strong , readonly ) UIButton *facebookButton;
140140
141- /* !
141+ /* *
142142 @abstract The Twitter button. It is `nil` if the element is not enabled.
143143 */
144144@property (nullable , nonatomic , strong , readonly ) UIButton *twitterButton;
145145
146- /* !
146+ /* *
147147 @abstract The sign up button. It is `nil` if the element is not enabled.
148148 */
149149@property (nullable , nonatomic , strong , readonly ) UIButton *signUpButton;
150150
151- /* !
151+ /* *
152152 @abstract It is `nil` if the element is not enabled.
153153 */
154154@property (nullable , nonatomic , strong , readonly ) UIButton *dismissButton;
155155
156- /* !
156+ /* *
157157 @abstract 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- /* !
163+ /* *
164164 @abstract The sign up label.
165165
166166 @deprecated This property is deprecated and will always be nil.
0 commit comments