Is it possible to programmatically check the bundle version of the previous app version installed? I know how to get the current version
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
The reason I ask is because there is a bug when updating my app from version A to C, but not B to C. I'd like to be able to check if the previous version was version A and if so, handle the bug accordingly.