I have got an UITableViewCell
and I want to call a void in a ViewController
of the UITabBar
in it. Is that possible using [UIApplication sharedApplication]
? If yes, how can I do that?
Thanks in advance.
This is pretty vague, the answer is yes, it is possible to do such a thing. You just need to design your classes in such a way to make it possible.
A number of ways to approach it
ViewController
's interface that UITableViewCell
can callViewController
With that said, this sounds weird to me, why would your UITableViewCell act on a UITabBar? The interaction "feels" strange. Usually touching a cell in a table does not change the tab that the user is on, it could be fairly confusing. If that is not what you're doing, then why is this method in the ViewController that controls the UITabBar? You may need to separate your concerns.