私はこのデータを渡すsegueを介して迅速な解決策3で動作していませんか?
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
let dicttemp = (arrRespProduct?.object(at: indexPath.row))! as! NSDictionary
dicData = NSMutableDictionary(dictionary: dicttemp)
performSegue(withIdentifier: GlobalConstant.segueIdentofier.productDetail, sender: self)
}
ようcollectionView
のdidselect方法からデータを渡されている。しかしこの方法
func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)
が...迅速3のいずれかの解決策を呼び出していませんか? String.substring
にprepare
へprepareForSegue
またはString.substringFromIndex
:
@ Nirav D great right anser –