CocoaPods trunk is moving to be read-only. Read more on the blog, there are 16 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Alex Manarpies.
ADLVersionManager can be used to display the app's current version and build number
in the iOS Settings panel. In order for this to work, you need to add a
Settings.bundle
to your app and add the following section to its Root.plist
:
<dict>
<key>DefaultValue</key>
<string></string>
<key>Type</key>
<string>PSTitleValueSpecifier</string>
<key>Title</key>
<string>Version</string>
<key>Key</key>
<string>adl_appVersion</string>
</dict>
Modify your AppDelegate.m
:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Add the following line:
[ADLVersionManager saveVersionFromMainBundle];
return YES;
}
iOS 6+
Adelanto is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "Adelanto"
Alex Manarpies | aceontech.com | @aceontech
Adelanto is available under the MIT license. See the LICENSE file for more info.