문제

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

  1. Create a method on ViewController's interface that UITableViewCell can call
  2. Use the delegate pattern
  3. Post a notification and observer the notification in ViewController

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top