Guest User

Untitled

a guest
Sep 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @interface PIPObjectForTests : PIPObject
  2. {
  3.     NSMutableSet * pipos_;
  4. }
  5. @property NSMutableSet * pipos;
  6. @end
  7.  
  8. -------------------------------
  9. #import "PIPObjectForTests.h"
  10.  
  11. @implementation PIPObjectForTests
  12. @synthesize pipos = pipos_;
  13.  
  14.  
  15. @end
  16.  
  17. -----------------------------------
  18.  
  19. PIPObjectForTests *o = [PIPObjectForTests create];
  20.     [o pipos];
  21.     [o countOfPipos];
  22.     [o addPipos:o2];
  23.  
  24. No visible @interface for 'PIPObjectForTests' declares the selector 'countOfPipos'
  25. No visible @interface for 'PIPObjectForTests' declares the selector 'addPipos:'
Add Comment
Please, Sign In to add comment