Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1.  
  2. @interface AdNetworkController : NSObject {
  3. @private id _adView;
  4. }
  5. - (void)setAdView:(id)aView;
  6. @property(nonatomic, retain, readonly) id adView;
  7. @end
  8.  
  9.  
  10.  
  11. #import "AdNetworkController.h"
  12.  
  13.  
  14. @implementation AdNetworkController
  15.  
  16. - (void)setAdView:(id)aView {
  17. [_adView release];
  18. _adView = [aView retain];
  19. }
  20.  
  21. #pragma mark -
  22. #pragma mark Public Properties
  23.  
  24. @dynamic adView;
  25. - (id)adView {
  26. return _adView;
  27. }
  28.  
  29. @end
Add Comment
Please, Sign In to add comment