you can iterate through the json by:
for (_,subJson):(String, JSON) in json {
var title = subJson["items"]["2"]["title"].stringValue
print(title)
}
have a look at the documentation of SwiftyJSON.
https://github.com/SwiftyJSON/SwiftyJSON
go through the Loop section of the documentation