1
func imageUploadRequest(param:[String: String] ,myImageView: UIImage)
I need to call the function imageUploadRequest
passing 2 parameters, the first being a string array and the second an image. How could I do this? 'Cause you’re making a mistake passing the parameters?
var up = UploadImageView()
var request: UploadImageView = UploadImageView()
request.imageUploadRequest(param, myImageView: self.imageProfile)
String or Dictionary array? if it is only string array uses only
param:[String]
. What error is appearing in Logs?– Antony Alkmim