ko1o / PYSearch

🔍 An elegant search controller which replaces the UISearchController for iOS (iPhone & iPad) .
MIT License
3.83k stars 752 forks source link

Search history removes spaces from search item #143

Open jombie opened 6 years ago

jombie commented 6 years ago

Do not remove space from search text when it shows in search history. Is there any workaround for now.

ko1o commented 6 years ago

You can set removeSpaceOnSearchString to NO.

/**
 Whether remove the space of search string, default is YES.
 */
@property (nonatomic, assign) BOOL removeSpaceOnSearchString;
jombie commented 6 years ago

Thanks, that was what I was looking for.