下面的法典提出了这方面的警告:
NSData may not respond to dataWithBase64EncodedString:
该代码:
NSString * message = @"string string string";
NSData *data= [NSData dataWithBase64EncodedString:(NSString *)message];
我该如何修复以消除此警告?
下面的法典提出了这方面的警告:
NSData may not respond to dataWithBase64EncodedString:
该代码:
NSString * message = @"string string string";
NSData *data= [NSData dataWithBase64EncodedString:(NSString *)message];
我该如何修复以消除此警告?
只是为了澄清之前的答案:
在NSFoundation API中,NSData没有
您可以使用分类向任何类添加任意方法。如果有人在他们的示例代码中使用了分类,您将无法使用该代码,除非您还获取了定义分类的头文件和实现文件。如果原始作者未提供这些文件,则您将没有办法。
Base64编码不是API提供的字符串编码之一,因此您可能需要自己实现或找到某个人的代码。
NSData没有dataWithBase64EncodedString:
方法。如果您使用具有此方法的自定义NSData类别,则应导入定义该方法的标题。
编辑: 所以如果你正在使用这个链接中的代码,那么你可以创建自己的.h和.m文件,然后将那些代码复制到它们中。
// MBBase64.h
@interface NSData (MBBase64)
+ (id)dataWithBase64EncodedString:(NSString *)string; // Padding = characters are optional. Whitespace is ignored.
- (NSString *)base64Encoding;
@end
//MBBase64.m
static const char encodingTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
@implementation NSData (MBBase64)
...
@end
然后进口MBBase64.h
。 页: 1
I m building a C++ project under Eclipse and my release folder should include a static sub-folder with some files inside it, those are required by executable during runtime. The problem is that this ...
Can I use multiple output paths. like when i build my project, the exe should generate in two different paths. If so, How can I specify in Project Properties-> Build -> output path? I tried using , ...
We have several build machines, each running a single TeamCity build agent. Each machine is very strong, and we d like to run several build agents on the same machine. Is this possible, without using ...
i am build forge as build tool. it is executing maven mvn commands fine ,but it couldnt recognizing the maven project pom.xml to run the build.so i tried to execute the same pom.xml through the ...
As the tittle says I need a prebuild command CONDITION that executes an exe on build solution/project and passes when i use F5. I found "$(ConfigurationName)" as a possible solution on some websites ...
I tried to get Cobertura running inside my ant script, but I m stuck right at the beginning. When I try to insert the cobertura taskdef I m missing the Log4J libraries. Ant properties & ...
Currently our build solution is set up using TFS + MS Build scripts. TFS is also being used as a CI server. I ve seen several posts on this site telling people about other CI solutions. Are there ...
We are developing an application that would be offered as a hosted solution. I am struck with understanding how can i use multiple sites with same code without duplicating base code. eg: website 1: ...