I have been playing with different forms of database lists, from sqlite to making an index system in an array. One of the issues I have come across is not being able to use two or more words in the entry name. For example:
Entry *Man = [[Entry alloc] initWithName
"Man" description
"The male of the species."];
If I used '*Man or boy', this would have all sorts of problems.
Is there are way of having more than one word in this type of index?
Entry *Man = [[Entry alloc] initWithName
If I used '*Man or boy', this would have all sorts of problems.
Is there are way of having more than one word in this type of index?