how to call @selector method from another class
问题 is it possible to call @selector methods from another class ? for example i make a method "bannerTapped:" and call it from "myViewController.m" class. myviewcontroller.m : anotherClass *ac= [[anotherClass alloc]init]; UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc]initWithTarget:ac action:@selector(bannerTapped:)]; singleTap.numberOfTapsRequired = 1; singleTap.numberOfTouchesRequired = 1; cell.conversationImageView.tag = indexPath.row; [cell.conversationImageView