0

Hi i am using sharekit API for sharing a text in my iPhone app,i am facing a problem in Facebook login page while sharing if i enter wrong userid and password once and for the next time the password field is not in secure mode whatever password i enter it is visible. can anyone help thanks in advance

George
  • 352
  • 2
  • 5
  • 15

1 Answers1

0

SHKFormFieldTypePassword is important check this out not SHKFormFieldTypeText

    - (NSArray *)authorizationFormFields
    {
        return [NSArray arrayWithObjects:
                [SHKFormFieldSettings label:@"Username"
                                        key:@"username"
                                       type:SHKFormFieldTypeText
                                      start:nil],
                [SHKFormFieldSettings label:@"Password"
                                        key:@"password"
                                       type:SHKFormFieldTypePassword
                                      start:nil],           
                nil];
    }