CocoaPods trunk is moving to be read-only. Read more on the blog, there are 16 months to go.

Adelanto 0.1.1

Adelanto 0.1.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Alex Manarpies.



Adelanto 0.1.1

Usage

ADLVersionManager

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;
}

Requirements

iOS 6+

Installation

Adelanto is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "Adelanto"

Author

Alex Manarpies | aceontech.com | @aceontech

License

Adelanto is available under the MIT license. See the LICENSE file for more info.