Advertisement
Guest User

Untitled

a guest
May 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. int i = 0;
  2. while (YES) {
  3. @autoreleasepool {
  4. NSString *string = [[NSString alloc] initWithFormat:@"%d", i];
  5. // or
  6. // NSString *string = [[NSString alloc] init];
  7.  
  8. [[string rac_willDeallocSignal] subscribeCompleted:^{
  9. NSLog(@"obj dealloc");
  10. }];
  11. }
  12. i++;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement