How might I check if a particular NSString is presnet in an NSArray?
Depends on your needs. Either indexOfObject if you care about equality (most likely), or indexOfObjectIdenticalTo if you care it's actually the same object (i.e. same address).
indexOfObject
indexOfObjectIdenticalTo
Source: