I do not understand what mean this style and are there any benefits for standard setter/getter?
- (UIViewController*)myVC {
return objc_getAssociatedObject(self, kMJPopupViewController);
}
- (void)setMyVC:(UIViewController *) myVC {
objc_setAssociatedObject(self, kMyVC, myVC, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}