I\'ve put together this code from lots of research. Information on the twitpic API is here: http://twitpic.com/api.do#uploadAndPost
I\'m writ开发者_开发问答ing a RSS feeder and using the NSXMLParser to parse an XML page for me.
I\'ve got the problem when I tried to do asynchronous requests to server from background thread. I\'ve never got results of those requests. Simple example which shows the problem:
NSURLConnection *connection is a property of the class @property (nonatomic, retain) NSURLConnection *connection;
my app upload an image to my server. i want to show this event by a progress bar. - (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger
I have a URL e.g. http://www.test.com that contains a meta redirect as follows: <meta http-equiv=\"Refresh\" content=\"0; url=\"http://www.trial.com ?>
Hey I am using a NSURL Connection to receive data. [NSURLConnection sendSynchronousRequest: //create request from url
I have this simple scenario: main.m (which is my main class) myClass.m (which is an additional class) In my plans it should happen something like this