I am storing values from Json response like
self.NameArray = self.attachmentsArray.valueForKey("filename") as! NSArray
Output:
NameArray(("Din.pdf","img.jpeg"),(),(),("41_58"))
I got this output. I need to get the array only having ("Din.pdf","img.jpeg","41_58")
.
How to get it using swift code?