我的 ios 应用程序中有搜索功能。我只是以这种方式比较用户键入的字符串和目标字符串:
if (!([name rangeOfString:searchText].location == NSNotFound) || !([description rangeOfString:searchText].location == NSNotFound))
但是当我点击多个按钮时,我的应用程序会在这个地方崩溃。
有时会出现这个错误:
MyApp [2407:6bf7] -[__NSCFSet length]: unrecognized selector sent to instance 0x4f71c0
MyApp [2407:6bf7] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFSet length]: unrecognized selector sent to instance 0x4f71c0'
关于这两个错误的任何想法?
谢谢。