使用componentsSeparatedByString以#开头的NSString不起作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用componentsSeparatedByString以#开头的NSString不起作用相关的知识,希望对你有一定的参考价值。
我的代码如下:
NSArray *modifyVersionOnDevice [FileHandler parseFile:devicepath];
NSString *param = [modifyVersionOnDevice objectAtIndex:1];
//param at this point is one element with string of "#MAJREV: 3"
//As soon as I run the next line, I get an error Unrecognized selector sent
to instance.
NSArray *d =[param componentsSeparatedByString:@":"];
如果我硬编码
NSString *param =@"#MAJREV: 3"; it works
答案
事实证明你必须将param转换为文字字符串。
NSString *param = [NSString stringWithFormat:@"%@",[modifyVersionOnDevice objectAtIndex:1]];
然后NSArray * d = [param componentsSeparatedByString:@“:”];
以上是关于使用componentsSeparatedByString以#开头的NSString不起作用的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)