我在我的ios應用程序中獲得了搜索功能。我只是比較一個字符串,用戶輸入,以及目標串以這樣的方式當點擊很多按鈕時,UITextField失敗
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'
這個2級的錯誤任何想法?
Thnx。
可能是內存泄漏,UITextField是自動釋放的。 – Raptor