Latest changes

This commit is contained in:
Gregory John Casamento 2020-05-26 02:05:50 -04:00
parent 1539213eeb
commit ca2a8fa6b0
2 changed files with 17 additions and 0 deletions

View file

@ -145,6 +145,20 @@
return nil;
}
- (id) initWithCoder: (NSCoder *)coder
{
self = [super init];
if (self != nil)
{
NSLog(@"Decoding");
}
return self;
}
- (void) encodeWithCoder: (NSCoder *)coder
{
[super encodeWithCoder: coder];
}
@end
@implementation NSLayoutXAxisAnchor