Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - (id)allocObject
- {
- /*
- * Мы создаем объект и становимся его владельцами
- */
- id obj = [[NSObject alloc] init];
- /*
- * В данный момент этот метод обладает правами на объект
- */
- return obj;
- }
Advertisement
Add Comment
Please, Sign In to add comment