Pulling your Bundles Version Number into your App
Applications on the iPhone and App Store have forced developers to pay more attention to there Version Number. App Store pays attention to this in Itunes Connect and the Bundle Version Number in Info.plist when you upload your application for approval. I noticed that developers store their own variables and manually update product versions. I too had fallen for this in one of my applications but decided to figure out a stronger method in pulling this data instead of a manual one. I have found the below to solve this issue:
NSString *versionNumber = CFBundleGetValueForInfoDictionaryKey(CFBundleGetMainBundle(),
… Continue Reading


