NSURL is a class from Foundation.framework in Apple MacOS and iOS. The NSURL class provides the ability to manipulate URLs and the resources they refer to.

learn more… | top users | synonyms

0
votes
0answers
41 views

stringByAddingPercentEscapesUsingEncoding error string

I'm sending a GET request and my url is http://myurl.com/addpla?name=JJ Burger &category=Delicatessen and Other &location=Sao jose do Rio Preto (I did use NSLog and it's correct) but ...
0
votes
2answers
27 views

NSURLConnection only authenticates on second attempt

I am trying to load a secure website in a UIWebView my basic approach is to create a NSURL, the n a NSURLRequest, then a NSURLConnection, then to load the NSURLRequest in the UIWebView. When the ...
0
votes
2answers
35 views

How to extract and remove scheme name from NSURL?

What is proper way to extract and remove scheme name and :// from a NSURL? For example: note://Hello -> @"Hello" calc://3+4/5 -> @"3+4/5" so NSString *scheme = @"note://"; NSString ...
0
votes
1answer
59 views

iOS 5 Json Serialization

I have used JSON Serialization to get json response, here i'mn getting all fine, but when i need to post some values as key value pair with the URL. I have done like this, but didn't get the result. ...
0
votes
2answers
67 views

Why xcode and RestKit crash from NSURL nil string parameter

I am new to xcode and following this RestKit tutorial: https://github.com/RestKit/RKGist/blob/master/TUTORIAL.md I have gone through it once succesfully. I am going through it again and customizing ...
0
votes
1answer
34 views

NSURLConnection not working

I need to open my php url from xcode and I am passing a variable in the url. I am performing the following code but it is not working, I have already checked that typing this url in the web browser ...
2
votes
1answer
27 views

Detect URL valid for iOS

I want to detect if the URL is valid. So I see the following function. + (id)URLWithString:(NSString *)URLString As the Apple Documentation said, an NSURL object initialized with URLString. If the ...
0
votes
2answers
35 views

NSURL object value is null

I am generating a URL as given by string parameters but url gives null value. For generating URL I have implemented the following code . NSURL *url = [[NSURL alloc] init]; NSString *strURL = ...
1
vote
2answers
34 views

Wrapping an NSString (file path) in NSURL breaks Unicode?

I've had an iPhone app in the store for 2 years that loaded local HTML files into a webview. While updating it I've run into an issue with the file paths. One of the elements in the path is in ...
0
votes
2answers
94 views

AFNetworking upload file

I am uploading files using AFNetworking and AFAmazonS3Client to Amazon S3. I loop over an array of files and all the files upload successfully to the S3 server as expected, but during upload extra ...
1
vote
1answer
40 views

How to to pass a URL with parameters into a GET parameter of other page using NSURLRequest?

I have these two URLs: NSString *firstUrl = @"http://example.com/imageservlet?name=image_name&width=200&height=200"; and NSString *secondUrl = [NSString ...
0
votes
2answers
36 views

How to change parameter in URL iOS

I have a URL like myApp://action/1?parameter=2&secondparameter=3&thirdparameter=10 I need to change parameter = 2 and secondparameter =3 like ...
-1
votes
2answers
35 views

NSURL with string giving null value

Below is what I have NSString *foofile = @"/Users/alkandari/Library/Application Support/iPhone Simulator/6.1/Applications/8C445026-6387-4E40-B5A3-D1A1680666D6/Documents/ProjacsBODFiles/file_5_21.pdf" ...
1
vote
0answers
22 views

NSURLBookmarkCreationPreferFileIDResolution has no effect

I'm trying to create a Bookmark that locates a file even after it's been moved or renamed. Here I create & store a Bookmark for ~/Desktop/file.txt: - (void) writeBookmark { NSURL* ...
5
votes
2answers
170 views

NSURL URLWithString:relativeToURL: is clipping relative url

I'm trying to implement an iOS app, which uses RestKit. In all examples I've seen so far the following code is used to create the URLs: NSURL *baseURL = [NSURL ...
0
votes
2answers
60 views

Remove last portion of the NSURL: iOS

I am trying to remove just the last part of the url, Its a FTP URL. Suppose, I have a URL like: > ftp://ftp.abc.com/public_html/somefolder/. After removing the last portion I should have it as: ...
-1
votes
3answers
65 views

Building up a URL in Objective-C [closed]

I want to make a request to diffrent servers I only want to fill in the url or ip address in a textfield. I build different solutions but they all faild. I think with this one i'm close. This is ...
0
votes
1answer
38 views

stringByAddingPercentEscapesUsingEncoding adds unexpected characters?

I'm having a hard time getting my NSURL to work, when I create the final string before converting to URL it adds unwanted character to the end of the string, why is this happening and how can I fix ...
0
votes
2answers
116 views

iPhone App Custom Url Scheme Issue

I am trying to get a custom url scheme to open a url inside the application. So the url scheme would be "example://confirm?1234" which I would like to use the query string as part of a url for a ...
0
votes
1answer
63 views

Adding data given by the user to an array - Objective-C

I'm trying to create a Mac OS X app where there are some default sound and the user can add others if he wants. I'm loading the sounds to an array in -awakeFromNib : for (NSString *str in ...
0
votes
1answer
41 views

Convert Colon-Separated Path to NSURL

Is there a straight-forward way to convert a colon-separated path (i.e. "Macintosh HD:Users:stuarttevendale:Documents:DBTest.db") to an NSURL (i.e. ...
3
votes
1answer
52 views

Why is the value of NSURLCreationDateKey nil on iOS 4.3 but not on iOS 5+?

I have a list of NSURL's for local stored files. I want to show the creation date, so I retrieve it as follows: for (NSURL * file in sortedFileList){ NSDate *date = nil; NSError * ...
0
votes
1answer
41 views

Get block device from NSURL

The question says it all. How can I get the block device from an NSURL representing, for example, a removable media? What I would like to get from /Volumes/MyDevice is something like /dev/disk2. I ...
0
votes
0answers
8 views

Is NSURL/CFURL's resource property cache per-object, or global?

These methods/functions are used to access resource properties: - [NSURL getResourceValue:forKey:error:] - [NSURL resourceValuesForKeys:error:] CFURLCopyResourcePropertyForKey() ...
1
vote
0answers
25 views

What are the current kernel resource limits on security-scoped bookmarks?

The docs for -[NSURL startAccessingSecurityScopedResource] state: You must balance every call to the startAccessingSecurityScopedResource method with a corresponding call to the ...
0
votes
3answers
114 views

how to convert %20 to space in Iphone SDK

I am working on app, in which I interacting with web-service most of time. I am getting problem when I added space on somewhere it convert space to %20 when converting url to request. I googled but ...
2
votes
1answer
292 views

NSURL path vs absoluteString

I've seen many questions on SO concerning converting between NSURL and NSString. They all involve using either NSString *path = [myURL absoluteString]; or NSString *path = [myURL path];. What is the ...
0
votes
1answer
36 views

iOS - iPhone application documents “No such directory”?

I'm trying to use the method seen in the solution here to delete all the files in the iPhone documents directory for the application I'm writing. I've made some minor changes to the code in the ...
0
votes
1answer
131 views

iOS ,NSDocumentDirectory get the nsurl or path file

i have this code for saving the mp3 files NSArray *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *docDirectory = [documentPath ...
0
votes
2answers
72 views

Detecting if a custom file icon was set in Cocoa

I wrote an app that sets a custom icon for some files, but as the creation of such an icon is quite expensive I'd like to test if a custom icon was already set before. With custom icon I mean an icon ...
0
votes
0answers
58 views

xcode error when trying to pass nsurl to a function

I seem to be having issues with the code below, I am trying get url1 from database as soon as the view loads (to speed things up), when i press the play button to play the stream at ...
0
votes
2answers
47 views

xcode thrown error when logging NSURL

can anyone help solve this error when running xcode with the following code and trying to nslog url1 .m file NSLog(@"URL flag is not set, Reverting to stored value"); //url1 = [NSURL ...
0
votes
1answer
110 views

AVPlayer with local video file

There is a little video part in my application. So i find this sample, which play mp4 video from url: http://www.sdkboy.com/?p=66 You can download sample here: ...
0
votes
1answer
26 views

Crash when trying to open downloaded pdf in new view

My app downloads a pdf and then on a button press brings it up in a new view. I get the error: -[NSURL initFileURLWithPath:]: nil string parameter' After some troubleshooting I pinned the ...
0
votes
2answers
209 views

NSURL baseURL returns nil. Any other way to get the actual base URL

I think I don't understand the concept of "baseURL". This: NSLog(@"BASE URL: %@ %@", [NSURL URLWithString:@"http://www.google.es"], [[NSURL URLWithString:@"http://www.google.es"] baseURL]); Prints ...
-5
votes
1answer
54 views

How to convert this to nsurl? [closed]

How do I convert this into an nsurl. This is ripped off from the rest kit example and this would work, but I need to fetch data from .json on a website and not a local .json file (that is what the ...
0
votes
1answer
70 views

iOS - build email URL without parsing

I want to build an email URL using some class (NSURL or similar) BUT I do not want the overhead of parsing a string. I want to be able to specify the scheme (mailto in this case) and the address ...
0
votes
0answers
49 views

Can't Pass URL from XML data to different class

Having a bear of a time figuring this out. I used RaptureXML to parse a podcast feed and grabbed data to use in my app. It is for a church to play sermons once you click in the NSArray. Everything ...
0
votes
1answer
98 views

How to set NSURL Resource Values for all files and folders within a folder

I'm trying to prevent a whole folder and its contents from backing up to iCloud, by setting its NSURLIsExcludedFromBackupKey to 1, as indicated in the guidelines. I'm able to set the key to the ...
0
votes
1answer
76 views

How to URL encode a NSString

I am trying to url encode a string, but the NSURLConnection is failing because of a 'bad url'. Here is my URL: NSString *address = mp.streetAddress; NSString *encodedAddress = [address ...
1
vote
1answer
55 views

Data is always null… no idea why

NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"]; NSLog(@"Path: %@", path); NSURL *url = [NSURL URLWithString:path]; NSLog(@"URL: %@", url); NSData *data = [NSData ...
1
vote
1answer
99 views

Http Get request issue [closed]

I need to get the data from service URL. But I couldn't get it .May be something like whitespaces is preventing it .I couldn't understand how to resolve it. NSString *urlString= [NSString ...
-1
votes
2answers
125 views

How to take the parameter from URL scheme

I am using url scheme in my iphone app,from a page I switch user to safari,and a button click from web page,I am reverting back to app At that time ,some parameters are passed by the web page like ...
0
votes
2answers
193 views

AFNetworking UIImage NSURL

I use AFNetworking to get beer details from my rails api, and I want to show an image from a url that is returned. Example API response description = "Super tasty"; id = 3; "label_url" ...
1
vote
3answers
137 views

NSURL Always Returns Nil

I have WCF service and I want to get data from my web service. But URL always returns nil. Why? I want to send parameter to WCF which comes from text field value. For example; txtfield.text = ...
-2
votes
1answer
107 views

issue in encoding a string with percent escaping iphone

This is my string. NSString *str=@"A & B"; now i am converting it to NSUTF8StringEncoding. str = [str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSLog(@"str: %@", str); ...
1
vote
2answers
474 views

how can pass multiple parameters in NSURL string in iOS?

am developing one app in that app i need pass more than one parametres at a time in nsurl my code is responseData = [[NSMutableData data] retain]; ArrData = [NSMutableArray array]; NSURL *url = ...
2
votes
2answers
236 views

Storing an NSURL as a string in Core Data

I'm beginning to play around with Core Data and just have a question around storing something like a URL. I've currently got it configured as a transformable which is working fine however I feel that ...
-5
votes
1answer
45 views

NSURL instance is not initiating from NSString because of “|” sign is there in NSString?. [duplicate]

My code is as follows : NSString *stringURL=[NSString stringWithFormat:@"http://202.58.232.138/abc.aspx?uid=INV12-CHND&token=2234533&str=x|y|z"]; NSURL *url=[NSURL URLWithString:stringURL]; ...
0
votes
1answer
287 views

NSUrl FileUrlWith Path is appending “ — file://localhost/” at end

I am using MPMoviePlayerController to play a video from url. for this i am getting the link from Xml parser.which is fine. NSString *path=[[self.items ...

1 2 3 4 5 13