作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我的项目中升级到 Xcode 7 后,我在 Xcode 中收到警告,我正在使用 CoacoSecurity
,它在以下代码行中使用 Base64
进行加密:
if (![NSData instancesRespondToSelector:@selector(initWithBase64EncodedString:options:)])
{
decoded = [[self alloc] initWithBase64Encoding:[string stringByReplacingOccurrencesOfString:@"[^A-Za-z0-9+/=]" withString:@"" options:NSRegularExpressionSearch range:NSMakeRange(0, [string length])]];
}
它告诉我 initWithBase64Encoding
已弃用,那么我该如何克服此警告并修复它。
我已经转换了它,但我收到了另一个警告:
decoded = [[self alloc] initWithBase64EncodedString:[string stringByReplacingOccurrencesOfString:@"[^A-Za-z0-9+/=]" withString:@""] options:NSRegularExpressionSearch];
警告说:
Implicit conversion from enumeration type enum NSStringCompareOptions to different enumeration type NSDataBase64DecodingOptions (aka enum NSDataBase64DecodingOptions)
最佳答案
使用这个
NSData *decodedData = [[NSData alloc] initWithBase64EncodedString:base64String options:0];
代表
NSData *data=[[NSData alloc]initWithBase64Encoding:(NSString *)dict];
关于ios - initWithBase64Encoding 弃用 base64,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33581908/
我是一名优秀的程序员,十分优秀!