OK this is what im looking to do. The program lets the user log in and behind the scenes generates a cookie. The user than can go through the app and do all its functionality with in the app as long as the cookie is still in session. What happens now is i want to be able to bring up a UIWebView take the cookie i have already generated with the loggin in within the app. And use it in order to bring up the website and have the website know this person is already logged in so i can go straight to the account and not to the log in page of the website.
Check out NSMutableURLRequest, I believe you would just need to set the cookie header field. And in your webview, use the loadRequest method to load your mutableURL request with the cookies set.