Guest User

Untitled

a guest
Jan 11th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .h
  2.  
  3. @interface StaticClazz: NSObject
  4. + (StaticPropertyClazz*)staticProperty;
  5. @end
  6.  
  7. .m
  8.  
  9. static StaticPropertyClazz* _staticProperty = nil;
  10.  
  11. @implementation StaticClazz()
  12.  
  13. + (StaticPropertyClazz*) staticProperty {
  14. return _staticProperty;
  15. }
  16.  
  17. + (void)setStaticProperty(StaticPropertyClazz*)staticProperty {
  18. _staticProperty = staticProperty;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment