我想从下面的字符串中找到前三个字符。 我的代码如下。
NSMutableString *str = @"test123";
NSMutableString *strTest = [str subStringWithRange:NSMakeRange(0,2)];
但我收到此错误
NSMutableString没有可见的@interface声明了选择器subStringWithRange错误
感谢您提供适当的解决方案。
答案 0 :(得分:0)
改为使用NSString
:
NSMutableString *str = @"test123" ;
NSString *strTest = [str substringWithRange:NSMakeRange(0,2)];