ThirdParty.iOS4Unity.UIImage.FromFile C# (CSharp) 메소드

FromFile() 공개 정적인 메소드

public static FromFile ( string filename ) : UIImage
filename string
리턴 UIImage
        public static UIImage FromFile(string filename)
        {
#if !XAMARIN
            filename = Path.Combine(UnityEngine.Application.streamingAssetsPath, filename);
#endif

            return Runtime.GetNSObject<UIImage>(ObjC.MessageSendIntPtr(_classHandle, Selector.GetHandle("imageWithContentsOfFile:"), filename));
        }