I have an if statement that is bringing up a SVProgressHUD that lets the user know there is an error. I would like to create a touch event programmatically but I am not sure how to define my view when I am using a tableview which was set up in interface builder
this is the code I would like to use
[myView addTarget:self action:@selector(myAction:)forControlEvents:UIControlEventTouchUpInside];
but I am not sure how to create myView when I am using a tableview. What is the best way to handle this?