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. c开发者_运维技巧an anyone help thanks in advance
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];
}
精彩评论