I'm working with RestKit for iPad right now. I use a REST Service which needs HTTP Basic Authentication. If the User enters wrong credentials, i catch that and show a UIAlert telling the user where is the problem.
Therefore i created a delegate method, which is called if RestKit raises an error -1012.
It works, but it looks like RestKit tries to authenticate 3 times with the wrong credentials and so the delegate get's called 3 times (with 3 UIAlerts being shown to the user).
Can RestKit be configured to only try once if the authentication works?