Re: NSURLConnection vs CF and other ideas

2008-06-29 Thread Alex Kac
Now that's very very nice as well. I actually did read the CFNetwork programming guide and CFHTTP request, but it seemed to me a lot more work for just the progress, but I was going to go that route when I decided to look it up in the mailing list archives. That's what made me ask because i

Re: NSURLConnection vs CF and other ideas

2008-06-29 Thread Alex Kac
Perfect. I was reading about things like subclassing NSInputStream and having to implement methods for which no docs were available on what to implement and things like that. It sounds like its a lot simpler and so that's good. Will do! On Jun 29, 2008, at 8:53 AM, Jens Alfke wrote: On 2

Re: NSURLConnection vs CF and other ideas

2008-06-29 Thread Jens Alfke
On 28 Jun '08, at 6:11 PM, Alex Kac wrote: I've got a working HTTP Post with file upload using NSURLConnection, but I don't seem to see any ways to get progress on the upload beyond the connectionDidFinishLoading: delegate. Is there a better way to be able to get progress info so we can di

Re: NSURLConnection vs CF and other ideas

2008-06-29 Thread Lukhnos D. Liu
On Jun 29, 2008, at 9:11 AM, Alex Kac wrote: I've got a working HTTP Post with file upload using NSURLConnection, but I don't seem to see any ways to get progress on the upload beyond the connectionDidFinishLoading: delegate. Is there a better way to be able to get progress info so we can disp

NSURLConnection vs CF and other ideas

2008-06-28 Thread Alex Kac
I've got a working HTTP Post with file upload using NSURLConnection, but I don't seem to see any ways to get progress on the upload beyond the connectionDidFinishLoading: delegate. Is there a better way to be able to get progress info so we can display that to the user? I checked the archiv