using sdk 3.1.2 on iphone
I am using the following code to activate the 3G connection but it doesn’t seem
to be working, anyone know what i need to do
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest: [NSURLRequest requestWithURL: [NSURL URLWithString:@”http://www.google.com“]] delegate:self];
[conn cancel];
Why are you calling:
Shouldn’t you do:
or something that actually tries to open the connection?