Guest User

Untitled

a guest
Aug 1st, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. Octal escape sequence out of range
  2. NSURLCredential *credential = [NSURLCredential credentialWithUser:@"asdfg123456"
  3. password:@"Zxcvb123!" persistence:NSURLCredentialPersistenceForSession];
  4.  
  5. NSURLCredential *credential = [NSURLCredential credentialWithUser:@"asdfg\123456"
  6. password:@"Zxcvb123!" persistence:NSURLCredentialPersistenceForSession];
  7.  
  8. NSURLCredential *credential = [NSURLCredential credentialWithUser:@"asdfg\123456"
  9. password:@"Zxcvb123!"
  10. persistence:NSURLCredentialPersistenceForSession] ;
Add Comment
Please, Sign In to add comment