Skip to content

Instantly share code, notes, and snippets.

View pa-w's full-sized avatar

Paola Villarreal pa-w

View GitHub Profile
Xamarin.iOS
Version: 7.4.0.90 (Business Edition)
Hash: 5978d3d
Branch:
Build date: 2014-08-06 16:07:04-0400
public static NSUrl URLForResource (this NSBundle source, string for_resource, string with_extension) {
var ns_for = new NSString(for_resource);
var ns_extension = new NSString(with_extension);
//try and get the resource
var result = Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr(
source.Handle,
NSBundleExtensions._Selector_URLForResource,
ns_for.Handle,