Skip to content

Instantly share code, notes, and snippets.

@ashfurrow
Created August 15, 2014 12:37
Show Gist options
  • Save ashfurrow/fc6d3de4c64a7a9c88e5 to your computer and use it in GitHub Desktop.
Save ashfurrow/fc6d3de4c64a7a9c88e5 to your computer and use it in GitHub Desktop.
Watch for Changes
- (void)dontshipthis:(UIView *)view
{
[[RACObserve(view, center) skip:1] subscribeNext:^(id x) {
NSLog(@"view: %@", view);
}];
for (UIView *v in view.subviews) {
[self dontshipthis:v];
}
}
@zzz6519003
Copy link

dontshipthis, if i do? 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment