通过官方的API 可以获取到wifi的信息,实现代码:
1234567891011- (id)fetchSSIDInfo { NSArray ifs = (__bridge_transfer id)CNCopySupportedInterfaces(); NSLog(@"Supported interfaces: %@", ifs); id info = nil; for (NSString ifnam in ifs) { info = (__bridge_transfer id)CNCopyCurrentNetworkInfo((__bridge CFStringRef)ifnam); NSLog(@"%@ => %@", ifnam, info); if (info && [info count]) { break; } } return info; }
至于开关wifi,是一个用户的 *** 作, 在非越狱的机器上,第三方的应用是没法实现这功能的。
获取 bundle version版本号
+(NSString) getLocalAppVersion
{
return [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
}
获取BundleID
+(NSString) getBundleID
{
return [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"];
}
获取app的名字
+(NSString) getAppName
{
NSString appName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"];
NSMutableString mutableAppName = [NSMutableString stringWithString:appName];
}
以上就是关于ios开发 怎么获取当前版本号全部的内容,包括:ios开发 怎么获取当前版本号、如何动态获取ios工程的Bundle version版本号,bundleID,appName、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)