If I have a password variable that is used for remote SSL authentication, is it secure to store in the source code?
e.g.
NSString * password = @"password";
Are there better way?
Update: Sorry for confusion, I am not storing the user password, instead, I am storing a password that is used to call our own backend, all the app will use the same password.