tags:

views:

8

answers:

0

I have a UIViewController. In this view controller I have a setup that is like this:

ScrollView -> UIView -> UIImageView, so in the scrollview I have a container which has a UIImageView view in it. In the UIImageView I have a map which is a subview of the container.

I also have a tab bar controller along the bottom of my screen. When a user presses a tabBar item an icon is displayed on the map. There is also a more tabBar item which opens a different view controller modally. In this view controller I have a UITableView where a user selects an item from table, the modal view is dismissed, and the corresponding icon is supposed to be displayed on the map.

I cannot get the icon to display on the map. I can supply some code if anyone needs to take a look. But my problem is that when I do pass my object back to the first view controller and run my function the icon doesn't get displayed. I get no errors and I'm very lost and confused.

Any help would be appreciated.