AndrewShmig

Untitled

May 1st, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (id)allocObject
  2. {
  3.     /*
  4.      * Мы создаем объект и становимся его владельцами
  5.      */
  6.     id obj = [[NSObject alloc] init];
  7.  
  8.     /*
  9.      * В данный момент этот метод обладает правами на объект
  10.      */
  11.  
  12.     return obj;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment