How to call a view on click of each UITableViewCell programmatically?
I have created a UITableViewcontroller and a UINavigationController in a TableController.m with UITableviewCell set to say @"CellOne" @"CellTwo". Now I also created two other files
`ImageView1.m`
ImageView2.m
where if I click on CellOne I should be able to get the view placed on ImageView1.m, same applied to the Image开发者_如何学CView2.m. How should I achieve this programmatically without using nib file?
override the touches event in ImageView1 and ImageView2.
精彩评论