NSString 将一根字符串切成碎片
所以,我正在为我的项目创建一个项目类,我希望有关键字在我的搜索选项卡中搜索它,我读到不能将数组放入 coreData,所以我想我放置了一个字符串和单独的关键字,
所以那么我该如何读取该字符串并将其切成小块呢?或者有更好的方法来做到这一点吗?
So, I am making an item class to my project and I want to have keywords to search it in my search tab, I read that you can't put arrays to coreData, so I thought I put a string and seperate keywords with ,
So how would I read that string then and cut it to smaller pieces? Or is there a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 NSString 的
-componentsSeparatedByString:
和-componentsSeparatedByCharactersInSet:
方法。Look at NSString's
-componentsSeparatedByString:
and-componentsSeparatedByCharactersInSet:
methods.