What's the correct way of creating an array of strings, and have lots of them in a array? So far I tried this
var arrayInArray = [[String]]()
Then I appended string arrays into "arrayInArray". And tried checking if it contained a specific string by doing
if arrayInArray[indexPath.row].containsObject(PFUser.currentUser().username)
and the error is [(String)] does not have a member named 'containsObject'. Whats the correct way of doing this?