Get AppVersion Programetically iOS

Xcode

NSString *strAppVersion;

    strAppVersion = [[NSBundle mainBundle] objectForInfoDictionaryKey: @”CFBundleShortVersionString”];

    NSLog(@”%@”,strAppVersion);

Leave a comment