I have a tableview which contains custom cells where each cell has some PDF documents.
I need to handle those PDFs using array and dictionary but I don’t know how to do that. Are there any examples on how to do this or should I maintain the values in plist?
As Basheer said, you should create delegate for your custom cell, you have created. Then assign indexPath.row method to the custom cell. Implement touchesBegan to get the tag value of custom cell and then finally use that tag value as index of an array of your table.