Hi
I have a structure like this....
UITableViewController -> UITableViewCell -> UIView
I need the UIView
to access a HashTable (NSMutableDictionary
) in the UITableViewController
Is there a way to access the ViewController simply from the ViewCell (using [ViewCell superview] obviously won't work) ....Do I need to go down through the AppDelegate using [[UIApplication sharedApplication] delegate]
?
Thanks!