Ejemplo n.º 1
0
        /// <summary>
        /// 获取已经安装的IPA程序Plist
        /// </summary>
        /// <returns></returns>
        public unsafe string GetInstalledList()
        {
            IntPtr result = new IntPtr();
            int    i      = MobileDevice.AMDeviceLookupApplications(this.iPhoneHandle, IntPtr.Zero, ref result);

            CoreFoundation.CFPropertyList cfPlist = new CoreFoundation.CFPropertyList(result);
            CoreFoundation.CFArray        xx      = new CoreFoundation.CFArray();
            return(cfPlist.ToString());
        }