Top "Nsurl" questions

NSURL is a class from Foundation.

iOS: Issue with ampersand in the URL string

How do we pass a string Mr.X & Mr.Y in the URL. I have tried this but this …

ios objective-c nsurl
Check if valid url so i can pass it to an NSURL?

I want to check if an NSString is a valid URL so I can parse it to an NSURL variable... …

objective-c nsstring nsurl
Reliable way to compare two NSURL or one NSURL and an NSString?

I recently had a problem when comparing two NSURLs and compare one NSURL with an NSString(which is a URL …

objective-c uiwebview nsstring nsurl nsurlrequest
UIApplication sharedapplication openURL not working

I have this method - (IBAction)facebookButtonPress:(id)sender { NSLog(@"fb hit"); [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"www.facebook.com/…

ios objective-c nsurl uiapplication openurl
Append NSString to NSURL?

I have an NSURL, a file path, and I want to add an NSString to the end of it (the …

objective-c macos nsstring append nsurl
What is the Swift 3 equivalent of NSURL.URLByAppendingPathComponent()?

I'm following a basic tutorial on building a simple iOS app in Swift. It is written in Swift 2.x, and …

swift xcode nsurl swift3
Parse NSURL path and query on iOS

Are there any standard objects or functions to parse an NSURL's components? Clearly I could write one, but why re-invent …

ios objective-c cocoa-touch nsurl
How to get the path/directory component from a NSURL?

I retrieved a NSURL from a NSSavePanel. I now have this NSURL which gives me the following: file://localhost/Users/…

macos cocoa nsurl
Launching App Store from App in Swift

I am creating an app, and I have a banner which promotes my other app. This is my code: var …

ios xcode swift app-store nsurl
Url minus query string in Objective-C

What's the best way to get an url minus its query string in Objective-C? An example: Input: http://www.example.…

objective-c url nsstring nsurl