views:

52

answers:

1

Hi,

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 ImageView2.m.How should i achieve this programatically without using nib file?

+1  A: 

override the touches event in ImageView1 and ImageView2.

Manjunath
No i dont want it that way, I should be able to call another class only through the click of each row in the Table.Please give a coding example
Cathy