i have a code here
@interface FFRightSidebarController ()
@property (nonatomic, strong) FFActivitiesController *activitiesController;
@property (nonatomic, strong) FFSidebarTableController *dummy2;
@end
so basically RightSidebarController instance holds an instance of activitiesController
the question is:
can i get the instance of rightsidebarcontroller from activitiescontroller (getting the instance of an instance):
it was basically like getting the view controller of a UIView like in this link here.
just in this case, it is viewController to ViewController.
if it's not clear enough please ask me.. Thanks ahead..