我知道我可以通过
从mainBundle NSDictionary找到捆绑版本NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString*)kCFBundleVersionKey];
但这并没有给我完整的版本。如何通过CFBundleShortVersionString
键访问对象?
答案 0 :(得分:6)
我认为你可以这样做:
NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
您不仅限于 konstants !