0
votes
0answers
4 views
NSURL not returning value for Plist example
pListURL returns nil on my code, but not the example. The
I copied and pasted the method: (taken from http://samsoff.es/post/iphone-plist-tutorial/)
(void)viewDidLoad {
NSURL …
0
votes
3answers
542 views
NSURLConnection is run many times
I connect asynchronously with server each 5 seconds. The URL is the same, but POST-body is changed each time. Now I create NSURL, NSURLRequest and NSURLConnection from the scratch …
0
votes
0answers
24 views
Saving video from UIImagePickerController
In my application, the user can record a video using the UIImagePickerController, and I need to save it to disk for later use. I've gotten the path out of the info dictionary and I …
0
votes
1answer
53 views
Removing url fragment from NSURL
I'm writing a Cocoa application, which uses NSURLs -- I need to remove the fragment portion of the URL (the #BLAH part).
example: http://example.com/#blah should end up as http:/ …
0
votes
2answers
29 views
View showed delay
My viewDidAppear methods is in below.
My view has a activieIndicator that is animating and a imageView.
In viewDidAppear I load an image from my server which will be used as an ima …
1
vote
5answers
278 views
Getting Image from URL/server
Hi All,
I'm fairly new to iPhone development and I'm trying to fetch 'Images from Server' in my application.
I'm using the following method to do this:
enter code here
- (UIIm …
0
votes
1answer
119 views
how i can implement a custom UIAlertview with a progress bar and a cancel button?
Hi iPhone application developers,
I am developing an iphone application.
This application allows a user to upload images to my server.
I want to show the upload progress in an ale …
1
vote
1answer
64 views
show progress bar when uploadingan image to my server
Hi, 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 total …
0
votes
1answer
108 views
Saving video from UIImagePickerController to Core Data on iPhone OS
I need some guidance on how to save video data to core data so that I can retrieve it again later.
I have no problem retrieving the NSURL that is returned from UIImagePickerContro …
0
votes
0answers
48 views
How to measure size of NSMutableURLRequest ‘s response before http-ungzip
One of my view needs a big JSON file for tableview. I use gzip in HTTP request, but want to be sure of size.
The problem: How to measure size before and after ungzip? or how to kn …
0
votes
2answers
158 views
UIWebView: Error while loading URL
Hello,
I am trying to build an RSS reader for the Tom's Hardware website.
I have an error when I try to load an URL into an UIWebview from an RSS link.
Here'is my code:
- (voi …
1
vote
1answer
22 views
How do I specifically get a static Web image url and apply it to an iPhone application blank view?
In building an iphone app, I can render a blank view, (say that's all I have, just a generic, full screen view) and I want to populate in that view an image from the web, say, "htt …
0
votes
1answer
179 views
NSData & NSURL - url with space having problem
I have following code in my application.
NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:pathOfThumbNail]];
pathOfThumbNail has following path
http://70.84.58 …
1
vote
3answers
112 views
Check if NSURL returns 404
Hi,
I need to check whether a URL, represented by a NSURL is available or returns 404.
What is the best way to achieve that?
Thanks!
heinrich
0
votes
2answers
73 views
Want to show navigation bar while opening URL-iPhone
Hi All.
I have been scratching my head for this issue. I hope the query title is self explanatory. On clicking a button i am opening URL like following:
NSURL *girlsUrl=[NSURL UR …
