Skip to content

Instantly share code, notes, and snippets.

@adamjernst
Created November 18, 2014 20:58
Show Gist options
  • Save adamjernst/8be531af9ddef8be3f0f to your computer and use it in GitHub Desktop.
Save adamjernst/8be531af9ddef8be3f0f to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main(int argc, char *argv[]) {
@autoreleasepool {
NSAttributedString *a = [[NSAttributedString alloc] initWithString:@"test"];
NSAttributedString *b = [[NSAttributedString alloc] initWithString:@"test"];
NSLog(@"a = b: %d", [a isEqual:b]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment