English 中文(简体)
如何防止生成警告:“NSData可能无法响应dataWithBase64EncodedString:”
原标题:How to Prevent Build Warning: " NSData may not respond to dataWithBase64EncodedString: "

下面的法典提出了这方面的警告:

NSData may not respond to dataWithBase64EncodedString:

该代码:

NSString * message = @"string string string";

NSData *data= [NSData  dataWithBase64EncodedString:(NSString *)message];

我该如何修复以消除此警告?

最佳回答

只是为了澄清之前的答案:

在NSFoundation API中,NSData没有方法。如果你要复制的代码中有这个方法,那么这段代码是通过添加类别来扩展NSData并包含该方法。

您可以使用分类向任何类添加任意方法。如果有人在他们的示例代码中使用了分类,您将无法使用该代码,除非您还获取了定义分类的头文件和实现文件。如果原始作者未提供这些文件,则您将没有办法。

Base64编码不是API提供的字符串编码之一,因此您可能需要自己实现或找到某个人的代码。

问题回答

排除警告不是您最担心的事情 - NSData不响应该方法,如果运行该代码,将会导致崩溃!

请查看此处的文档,以获取关于NSData默认可用的方法的信息:docs here

然而,您可能正在寻找此页面,该页面有一个类别的dataWithBase64EncodedString实现(请参见线程的最后一篇文章!)

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





相关问题
Eclipse CDT static resources under build folder

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 ...

Multiple Output paths for a C# Project file

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 , ...

Running multiple TeamCity Agents on the same computer?

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 ...

couldnt recognise pom.xml file

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 ...

Cobertura ant script is missing Log4J classes

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 & ...

Why not use TFS as a build / CI solution?

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 ...

Multiple websites running on same codebase?

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: ...

热门标签