|
Native Utils - iOS Air Native Extension author: Paweł Meller This extension currently provides access to: - Settings Bundle
- Unzipping a .zip file to specified location (using SSZipArchive)
- NSLog
Settings Bundle
![]()
docs on developer.apple.com Usage: - //Add Settings.bundle (yes, on windows it is a directory) to your application and include it in building options
- if(NativeUtils.isSupported)
- {
- var nativeUtils:NativeUtils=new NativeUtils();
- //you should alwas load defaults before accesing the values, this will not override any values, that are already set
- //if you don't load the defaults the application may crash when trying to access a value, that was not set
- nativeUtils.settings.loadSettingsDefaults();
- //if you want to retrieve a string:
- var mySetting:String=nativeUtils.settings.getStringValue("settingKeyFromBundle");
- //if you want to retrieve a number:
- var mySetting:Number=nativeUtils.settings.getNumberValue("settingKeyFromBundle");
- //if you want to retrieve an int:
- var mySetting:Int=nativeUtils.settings.getIntValue("settingKeyFromBundle");
- //if you want to retrieve a Boolean:
- var mySetting:Number=nativeUtils.settings.getBooleanValue("settingKeyFromBundle");
- //you can also set the values by using
- nativeUtils.settings.setStringValue("settingKeyFromBundle","my value");
- nativeUtils.settings.setNumberValue("settingKeyFromBundle",.52);
- nativeUtils.settings.setIntValue("settingKeyFromBundle",134);
- nativeUtils.settings.setBooleanValue("settingKeyFromBundle",true);
- //in iOS >5 synchronize should be called automatically, but you can also do this manually to commit the changes
- nativeUtils.settings.synchronize()
- }
复制代码 UnzipA simple unzipping function - had to do this, because all of the zip libraries for as3 that i found had problems with unpacking large files on iPad 1 source: githubUsage:- var _nativeUtils:NativeUtils;
- if(NativeUtils.isSupported)
- {
- if(!_nativeUtils)
- _nativeUtils=new NativeUtils();
- _nativeUtils.addEventListener(NativeUtilsZipEvent.PROGRESS,unpackProgress);
- _nativeUtils.addEventListener(NativeUtilsZipEvent.COMPLETE,unpackComplete);
- _nativeUtils.unzipFile(path,File.applicationStorageDirectory.nativePath);
- }
复制代码
Progress And Complete:- //Event Listeners:
- private function unpackProgress(e:NativeUtilsZipEvent)
- {
- //gives progress of unzipping (0-100)
- trace(e.percentage);
- }
- private function unpackComplete(e:NativeUtilsZipEvent):void
- {
- _nativeUtils.removeEventListener(NativeUtilsZipEvent.PROGRESS,unpackProgress);
- _nativeUtils.removeEventListener(NativeUtilsZipEvent.COMPLETE,unpackComplete);
- }
复制代码 Ever wanted to do trace on iOS without connecting to debugger? Now you can, install a system console (i'm using this one) and see every trace from your application.Usage:- var nativeUtils:NativeUtils=new NativeUtils();
- nativeUtils.nslog("Your message");
复制代码
相关链接:https://github.com/memeller/iOSNativeUtilities
|