AndrewShmig

Untitled

Apr 29th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @interface MyString : NSString @end
  2. @implementation MyString @end
  3.  
  4. int main(int argc, const char * argv[])
  5. {
  6.     MyString *str;
  7.  
  8.     for(int i=0; i<1000; i++){
  9.         str = [[MyString alloc] init];
  10.     }
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment