This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Xamarin.iOS | |
Version: 7.4.0.90 (Business Edition) | |
Hash: 5978d3d | |
Branch: | |
Build date: 2014-08-06 16:07:04-0400 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
NewerOlder